git @ Cat's Eye Technologies Eqthy / master eg / group-inverse.eqthy.md
master

Tree @master (Download .tar.gz)

group-inverse.eqthy.md @masterview rendered · raw · history · blame

Group Inverse
=============

<!--
SPDX-FileCopyrightText: The authors of this work have dedicated it to the public domain.
For more information, please refer to <https://unlicense.org/>
SPDX-License-Identifier: Unlicense
-->

When working in abstract algebra, one sometimes proves that the identity
element is unique, or writes a proof leveraging that fact.  However, such
proofs cannot be written in a purely equational setting, where the
identity element has been defined, not with an existence axiom, but as
a nullary operator.

So other techniques need to be used when working in 
equational logic.

Requires [Group theory](group-theory.eqthy.md).

### Inverse of Identity is Identity

    theorem
        inv(e) = e
    proof
        e = e
        mul(inv(e), e) = e     [by #inv-left with A=e]
        inv(e) = e
    qed

### Inverse of Group Inverse

Also see [Inverse of Group Inverse](https://proofwiki.org/wiki/Inverse_of_Group_Inverse) on ProofWiki.

    theorem
        inv(inv(A)) = A
    proof
        e = e
        e = mul(inv(A), A)
        mul(inv(inv(A)), e) = mul(inv(inv(A)), mul(inv(A), A))   [by congruence of X and mul(inv(inv(A)), X)]
        inv(inv(A)) = mul(inv(inv(A)), mul(inv(A), A))
        inv(inv(A)) = mul(mul(inv(inv(A)), inv(A)), A)
        inv(inv(A)) = mul(e, A)                                  [by #inv-left]
        inv(inv(A)) = A
    qed

### Group Element Commutes with Inverse

See also [Group Element Commutes with Inverse](https://proofwiki.org/wiki/Group_Element_Commutes_with_Inverse)
on proofwiki.org.

    theorem (#group-element-commutes-with-inverse)
        mul(A, inv(A)) = mul(inv(A), A)
    proof
        e = e
        mul(A, inv(A)) = e
        mul(A, inv(A)) = mul(inv(A), A)
    qed