Skip to content

Commit 28771ee

Browse files
authored
Cyclic Subgroup added (#83)
1 parent e58ebf5 commit 28771ee

1 file changed

Lines changed: 70 additions & 0 deletions

File tree

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Definition
2+
If $G$ is a [[Group]] and $a \in G$, then $H = \{a^n\; |\; n \in \mathbb{Z} \}$ is a [[Subgroup]] of $G$. This group is the **cyclic subgroup $\langle a \rangle$ of $G$ generated by** a. Also, given a group $G$ and an element $a$ in $G$, if $G = \{a^n\; |\; n \in \mathbb{Z} \}$, then $a$ is a **generator of** $G$ and the group $G = \langle a \rangle$ is **cyclic**.
3+
4+
Let $a$ be an element of a group $G$. If the cyclic subgroup $\langle a \rangle$ of $G$ is finite, then the **order of** $a$ is the order $|\langle a \rangle|$ of this cyclic subgroup. Otherwise, we say that $a$ is of **infinite order**.
5+
6+
## Example
7+
### Cyclic Subgroups of $\mathbb{Z}/6\mathbb{Z}$
8+
9+
Let $\mathbb{Z}/6\mathbb{Z}$ be an additive group of integers modulo 6. For any element $a \in \mathbb{Z}/6\mathbb{Z}$, the cyclic subgroup generated by $a$, denoted $\langle a \rangle$, is defined as:
10+
$\langle a \rangle = \{na\; |\; n \in \mathbb{Z} \} = \{na\;(mod \space 6) \; |\; n \in \mathbb{Z} \}$
11+
12+
To understand the generation of cyclic subgroups, we can use the following addition table:
13+
14+
| || 0 | 1 | 2 | 3 | 4 | 5 |
15+
|---|---|---|---|---|---|---|---|
16+
| 0 || 0 | 1 | 2 | 3 | 4 | 5 |
17+
| 1 || 1 | 2 | 3 | 4 | 5 | 0 |
18+
| 2 || 2 | 3 | 4 | 5 | 0 | 1 |
19+
| 3 || 3 | 4 | 5 | 0 | 1 | 2 |
20+
| 4 || 4 | 5 | 0 | 1 | 2 | 3 |
21+
| 5 || 5 | 0 | 1 | 2 | 3 | 4 |
22+
23+
Case 1: Generator $a = 1$
24+
25+
- $\langle 1 \rangle = \{0⋅1, 1⋅1, 2⋅1, 3⋅1, 4⋅1, 5⋅1\} \space (mod \space 6) = \{0, 1, 2, 3, 4, 5\} = \mathbb{Z}/6\mathbb{Z}$
26+
27+
- $|\langle 1 \rangle| = 6$
28+
29+
Case 2: Generator $a = 2$
30+
31+
- $\langle 2 \rangle = \{0⋅2, 1⋅2, 2⋅2, 3⋅2, 4⋅2, 5⋅2\} \space (mod \space 6) = \{0, 2, 4\}$
32+
33+
- $|\langle 2 \rangle| = 3$
34+
35+
Case 3: Generator $a = 3$
36+
37+
- $\langle 3 \rangle = \{0⋅3, 1⋅3, 2⋅3, 3⋅3, 4⋅3, 5⋅3\} \space (mod \space 6) = \{0, 3\}$
38+
39+
- $|\langle 3 \rangle| = 2$
40+
41+
Case 4: Generator $a = 4$
42+
43+
- $\langle 4 \rangle = \{0⋅4, 1⋅4, 2⋅4, 3⋅4, 4⋅4, 5⋅4\} \space (mod \space 6) = \{0, 4, 2\} = \langle 2 \rangle$
44+
45+
- $|\langle 4 \rangle| = 3$
46+
47+
Case 5: Generator $a = 5$
48+
49+
- $\langle 5 \rangle = \{0⋅5, 1⋅5, 2⋅5, 3⋅5, 4⋅5, 5⋅5\} \space (mod \space 6) = \{0, 5, 4, 3, 2, 1\} = \mathbb{Z}/6\mathbb{Z}$
50+
51+
- $|\langle 5 \rangle| = 6$
52+
53+
### Theorem 1
54+
The order of each cyclic subgroup of $\mathbb{Z}/6\mathbb{Z}$ divides the order of $\mathbb{Z}/6\mathbb{Z}$ (Lagrange's Theorem).
55+
56+
Proof: $|\langle a \rangle| \in \{1, 2, 3, 6\}$ for all $a \in \mathbb{Z}/6\mathbb{Z}$
57+
58+
### Theorem 2
59+
$\mathbb{Z}/6\mathbb{Z}$ is itself cyclic, generated by either $1$ or $5$.
60+
61+
i.e., $\mathbb{Z}/6\mathbb{Z} = \langle 1 \rangle = \langle 5 \rangle$
62+
63+
#### Summary of Distinct Cyclic Subgroups
64+
1. Trivial subgroup: $\langle 0 \rangle = \{0\}$, order 1
65+
2. Order 2 subgroup: $\langle 3 \rangle = \{0, 3\}$
66+
3. Order 3 subgroup: $\langle 2 \rangle = \langle 4 \rangle = \{0, 2, 4\}$
67+
4. Order 6 subgroup: $\langle 1 \rangle = \langle 5 \rangle = \mathbb{Z}/6\mathbb{Z}$
68+
69+
### Conclusion
70+
Cyclic subgroups of $\mathbb{Z}/6\mathbb{Z}$ are $\{0 \}, \langle 2 \rangle, \langle 3 \rangle, \mathbb{Z}/6\mathbb{Z}$.

0 commit comments

Comments
 (0)