5

Example 8. Consider $$\Bbb Z_2\times\Bbb Z_2 = \{(0,0),(0,1),(1,0),(1,1)\}$$ Although $\Bbb Z_2\times\Bbb Z_2$ and $\Bbb Z_4$ both contain four elements, it is easy to see that they are not isomorphic since for every element $(a,b)$ in $\Bbb Z_2\times\Bbb Z_2$, $$(a,b) + (a,b) = (0,0),$$ but $\Bbb Z_4$ is cyclic.

I understand the composition $\Bbb Z_2\times\Bbb Z_2 = \{(0,0),(0,1),(1,0),(1,1)\}$ and that $\Bbb Z_4=\{0,1,2,3\}$. I understand also that "for every element $(a,b)$ in $\Bbb Z_2\times\Bbb Z_2$, $(a,b) + (a,b) = (0,0)$".

But my questions remain: why does this show that they are not isomorphic?and how does the argument "but $\Bbb Z_4$ is cyclic" help answering whether or not they are isomorphic.?

gegu
  • 1,694
  • 2
    There is a really nice theorem that states the following: $\mathbb{Z}n \times \mathbb{Z}_m \cong \mathbb{Z}{nm}$ iff $\text{gcd}(n,m) = 1$. – Gilberto López Apr 09 '17 at 02:28
  • 1
    This general answer may help: http://math.stackexchange.com/questions/2039702/what-is-an-homomorphism-isomorphism-saying/2039715#2039715 – Ethan Bolker Apr 09 '17 at 15:40

3 Answers3

5

Well, $(a,b)+(a,b)=(2a,2b)=(0,0)$ since $2a=0$ for all $a\in \mathbb{Z}_2$. It shows that there are no elements of order greater than $2$ in $\mathbb{Z}_2\times \mathbb{Z}_2$. By definition, $\mathbb{Z}_4$ does have an element of order $4$.

You can show that isomorphisms of groups preserve orders of elements. (Any property that can be intrinsically defined, should be preserved by isomorphisms).

3

In $\mathbb{Z}_2 \times \mathbb{Z}_2$, the operation is $(a,b)+(c,d)=\left((a+c)\mod2),(b+d)\mod2\right)$

That's why every element has order $2$. But in $\mathbb{Z}_4$, there is an element of order $4$ namely $1$.

tattwamasi amrutam
  • 12,802
  • 5
  • 38
  • 73
2

You should think of isomorphic groups as being really the "same". For instance:

Fact: If $G$ and $H$ are isomorphic groups, and $g\in G$ corresponds to $h\in H$ under this isomorphism, then $g$ and $h$ have the same order.

This is what is being used in the proof you're asking about. So, since $(a,b)+(a,b)=(0,0)$ for all $(a,b)\in\Bbb Z_2\times\Bbb Z_2$, this precisely says that every element of $\Bbb Z_2\times\Bbb Z_2$ has order $2$. On the other hand, since $\Bbb Z_4$ is cyclic, there is an element of order $4$. Referring to the fact above, we see the two groups cannot be isomorphic.

Alex Mathers
  • 18,509