Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 4.4.15 ( $(\mathbb{Z}/5\mathbb{Z})^\times,\ (\mathbb{Z}/9\mathbb{Z})^\times$ and $(\mathbb{Z}/18\mathbb{Z})^\times$ are cyclic)
Exercise 4.4.15 ( $(\mathbb{Z}/5\mathbb{Z})^\times,\ (\mathbb{Z}/9\mathbb{Z})^\times$ and $(\mathbb{Z}/18\mathbb{Z})^\times$ are cyclic)
Prove that each of the following (multiplicative) group is cyclic: and .
Answers
Proof. Let denote the class of modulo .
-
is a generator of :
Since , is a generator of , so
is cyclic.
-
is a generator of :
Since , is a generator of , so
is cyclic.
-
is a generator of (the other generator is ):
Since , is a generator of , so
is cyclic.
With sagemath:
sage: [Integers(n).multiplicative_generator() for n in [5,9,18]] [2, 2, 11] sage: n = 5; a = Mod(2,n); [a^k for k in range(euler_phi(n))] [1, 2, 4, 3] sage: n = 9; a = Mod(2,n); [a^k for k in range(euler_phi(n))] [1, 2, 4, 8, 7, 5] sage: n = 18; a = Mod(11,n); [a^k for k in range(euler_phi(n))] [1, 11, 13, 17, 7, 5]