Skip to content

Instantly share code, notes, and snippets.

@joliss
Created December 20, 2015 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joliss/48abfbaf5a3e097b3c92 to your computer and use it in GitHub Desktop.
Save joliss/48abfbaf5a3e097b3c92 to your computer and use it in GitHub Desktop.
Let a, b ∈ G, and let b be a right inverse of a, i.e. a*b = e.
Then we can show that b is also a left inverse of a:
b*a
=b*a*((b*a)*(b*a)^-1)
=((b*a)*(b*a))*(b*a)^-1 (by associativity)
=(b*(a*b)*a))*(b*a)^-1 (by associativity)
=(b*a)*(b*a)^-1 (by assumption)
=e
Note that we don't even require G to be Abelian for this proof to work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment