5

My challenge is

Prove that if $n = 0,1,2,\ldots$ and $n\Bbb Z = \lbrace nk: k \in \Bbb Z \rbrace$, show that $n\Bbb Z$ is a subgroup of $\Bbb Z$ and are the only subgroups.

I handled the first point by saying that

i) Identity is 0, and $0\in n\Bbb Z$ and $0 \in \Bbb Z$

ii) For any $a,b \in n\Bbb Z$ $a+b = na_2 + nb_2 = n(a_2+b_2) \in n \Bbb Z$

iii) For any $na \in n\Bbb Z$, its inverse $n(-a) \in n\Bbb Z$.

For the second point, I said that all of the subgroups should be infinite, because for any finite group the largest element $a+a \notin H$, where $H$ is the potential subgroup, which is a contradiction. So $H$ must be of infinite order. For any $a \in H, -a$ should also be in $H$. The difference between any $a,b \in H$ should also be in $H$, i.e. $(a-b) \in H$. This leaves only the whole group or any group of the form $n\Bbb Z$.

Is my proof complete?

SalmonKiller
  • 2,140
  • 2
  • 16
  • 31
  • How do you know it leaves only groups of the form $n\Bbb Z$ (of which $\Bbb Z$ is an example I might add)? – anon May 27 '15 at 19:24
  • Tangentially, but make sure not to forget the case $n=0$. – quid May 27 '15 at 19:26
  • @quid case n = 0 is the identity. That's a trivial subgroup. – SalmonKiller May 27 '15 at 19:26
  • 1
    Yes, what I meant is that "the largest element" type argument only works if there is an element other than $0$. And the group nZ for n=0 is also not infinite. So what you say "all subgroups are infinite" is false. It is basically right, but you need to treat that special case n=0. – quid May 27 '15 at 19:27
  • @quid I was considering all proper subgroups. :) – SalmonKiller May 27 '15 at 19:28
  • Your usage of "proper" is unusual (as normally it will mean not the full group) But I get what you mean. As said it was only a tangential remark. But still you should say this somewhere. – quid May 27 '15 at 19:31
  • @quid Proper means not the identity and not the full subgroups. – SalmonKiller May 27 '15 at 19:31
  • At least MathWorld http://mathworld.wolfram.com/ProperSubgroup.html and Wikipedia http://en.wikipedia.org/wiki/Subgroup agree with me. – quid May 27 '15 at 19:33

3 Answers3

7

Hint: A simple way to tackle this is by considering $$n = \min \{x \in H ; x> 0\}$$

where $H \leq \mathbb Z$.

The inclusion $H \supseteq n\mathbb Z$ is clear.

For the other one take any $h \in H$ and use the division algorithm and the fact that $n$ is minimum.

Aaron Maroja
  • 17,571
5

You're almost there but not quite. You've shown that any subgroup of $\Bbb Z$ has a copy of $n\Bbb Z$. The way you want to go about it is to consider the least positive element in the subgroup $H$ and show that element generates $H$. (You'll end up doing a proof by contradiction.)

0

To write out your question completely: Prove that the subgroups of $\mathbb{Z}$ under the addition binary operation are precisely the groups $n\mathbb{Z}$ under addition.

Let H be a subgroup of $\mathbb{Z}$

(Note: because the binary operation is addition (and $H$ is a group), this means that if $a\in H$ then $-a \in H$. This means that if there is a non zero element in $H$, then there will always be a positive element in $H$)

Let $n$ be the least positive integer (i.e. an integer $ n > 0$) such that $n \in H$, the due to the addition binary operation on the group $H$, $n+n = 2n\in H$ and $n+n+n = 3n \in H$ and generally $n +n+...+n =tn$.
(Note: same applies for $-n+-n = -2n\in H$ and $-n+-n+-n = -3n \in H$ etc...)

This shows us that $H$ contains all the multiples of $n$.

Now let $p \in n\mathbb{Z}$, thus we can find some integer $q$ such that $p = qn$. Because $H$ contains all the multiples of $n$, this means that $p = qn \in H$.

Hence this shows that $n\mathbb{Z} \subseteq H$

Now for the reverse direction.

Let $k \in H$. Then by division algorithm, $k = nq +r$ where $n$ is the least positive integer in $H$ and $0\leq r < n$. As shown above, $nq \in H$. This means $-nq \in H$ due to the inverse property of groups. Thus $k - nq = r \in H$. But $n$ is the least positive integer in $H$, so if $0<r < n$, the $r$ would be the least positive integer in $H$ and hence a contradiction to "$n$ is the least positive integer in $H$". Thus the only other option is that $r = 0$. Thus $k = nq +r = nq \in n\mathbb{Z}$. Thus for all $k \in H$ we get $k \in n\mathbb{Z}$. Thus $H \subseteq n\mathbb{Z}$

Thus because $n\mathbb{Z} \subseteq H$ and $H \subseteq n\mathbb{Z}$, we can finally conclude that $H = n\mathbb{Z}$ where $H$ is an arbitary subset of $\mathbb{Z}$

Reuben
  • 635