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

Tree @master (Download .tar.gz)

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

Group Inverse

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.

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 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 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