5. Finite Cyclic Groups
-----
A cyclic group is a group that can be generated by repeatedly applying the group operation to a single element.
A finite cyclic group of order is just a set of elements where we "wrap around" after reaching , using addition modulo .
Modulo
For any integer and natural number , if you divide by , you get
where is the quotient and is the remainder
- The remainder satisfies
- This remainder is written as
Example
because
Set of Remainders
these are all the possible remainders when dividing integers by
The Operation: Addition Modulo n
We define an operation on as
Example
For
so
Finite Cyclic Groups
If a group has finitely many elements, the order of is just the number of elements it contains
In with addition modulo , starting from and repeatedly adding generates all the elements
this is known as "clock arithmetic", after reaching , you cycle back to
Example
, the elements of are
when we get to ,
so our group is
Group Table (Cayley Table)
For small finite groups, we can display all possible compositions in a group table
Procedure
- List all elements of the group down the left column (choices for )
- List all elements of the group down the right column (choices for )
- Fill each cell with the result of
Example
Addition modulo ,
| + | 0 | 1 | 2 | 3 |
|---|---|---|---|---|
| 0 | 0 | 1 | 2 | 3 |
| 1 | 1 | 2 | 3 | 0 |
| 2 | 2 | 3 | 0 | 1 |
| 3 | 3 | 0 | 1 | 2 |