Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 2.3.10 (Elements of $\langle \overline{30} \rangle \subset \mathbb{Z}/54\mathbb{Z}$ and their orders.)
Exercise 2.3.10 (Elements of $\langle \overline{30} \rangle \subset \mathbb{Z}/54\mathbb{Z}$ and their orders.)
What is the order of in ? Write out all the elements and their orders in .
Answers
Proof. For every integer ,
because .
This shows that the order of is :
Therefore the subgroup of generated by is
By Proposition 5, for all integers ,
The respective orders of are . □
With Sagemaths:
sage: Zn = Integers(54) sage: a = Zn(30) sage: a.additive_order() 9 sage: [k*a for k in range(9)] [0, 30, 6, 36, 12, 42, 18, 48, 24] sage: [(k*a).additive_order() for k in range(9)] [1, 9, 9, 3, 9, 9, 3, 9, 9]