1

We have a monoid with the identiy $e$, and we know that any element of the monoid squared is the identity. I have to prove now that this is a commutative group.

May somebody help me or give me a hint how I can show that this must be true?

Math Lover
  • 15,483
RM777
  • 1,007
  • 7
  • 18

3 Answers3

5

To show it's a commutative group, you need to show two things:

  • Existence of inverses
  • Commutativity

For inverses, take any element $a$; $a^2 = e$, so $a$ is its own inverse.

For commutativity, you need to show that for any elements $a,b$, $ab = ba$. Since $a^{-1}=a$ and $b^{-1}=b$, $$ab(ba)^{-1} = aba^{-1}b^{-1}=abab = (ab)^2 = e$$ Thus (multiplying both sides by $ba$ on the right) $ab = ba$

BallBoy
  • 14,740
0

$a^2=e$ implies that every $a$ has an inverse, itself. Therefore, this monoid is in fact a group. It is well known that $a^{2}=e$ in a group implies that it is commutative.

lhf
  • 221,500
  • I know that a² = e implies a group. But if I have two elements in the group which are not the same, say a and b. How can i prove that ab = ba with the fact that a² = e? – RM777 May 16 '18 at 19:41
  • "It is well known that $a^2=e$ in a group implies that it is commutative." Not so well-known that the op knows it. That probably should be proven. (Although it'd be fair to ask the OP to figure it out.) – fleablood May 16 '18 at 19:43
  • @RM777, I've added a link to a proof. – lhf May 16 '18 at 19:45
  • ... $e = (ab)(ab) = (aa)(bb)$ so $a(ab)(ab)b = a(aa)(bb)b$ so $ba = ab$. – fleablood May 16 '18 at 19:48
  • Great thank you! – RM777 May 16 '18 at 19:53
0

To prove that $a^2 = e$ for all $a$ implies $ab = ba$:

$(ab)(ab) = e$

$a(ab)(ab)b = a*e*b$

$(aa)(ba)(bb) = ab$

$e*ba*e = ab$

$ba = ab$.

or

$ab = k$

$a=abb = kb$

$e = aa = kba$

$k = ke = kkba = ba$

So $ab = k = ba$

fleablood
  • 130,341