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: ( 5 ) × , ( 9 ) × and ( 18 ) × .

Answers

Proof. Let [ a ] n denote the class of a modulo n .

  • 2 ¯ = [ 2 ] 5 is a generator of ( 5 ) × :

    { 2 k 𝑚𝑜𝑑 5 0 k < 4 } = { 1 , 2 , 4 , 3 } .

    Since | ( 5 ) × | = φ ( 5 ) = 4 = | { 2 k 𝑚𝑜𝑑 5 0 k < 4 } | , 2 ¯ is a generator of ( 5 ) × , so

    ( 5 ) × = [ 2 ] 5

    is cyclic.

  • 2 is a generator of ( 9 ) × :

    { 2 k 𝑚𝑜𝑑 9 0 k < 6 } = { 1 , 2 , 4 , 1 , 2 , 4 } .

    Since | ( 9 ) × | = φ ( 9 ) = 6 = | { 2 k 𝑚𝑜𝑑 9 0 k } | , 2 ¯ is a generator of ( 9 ) × , so

    ( 9 ) × = [ 2 ] 9

    is cyclic.

  • 11 is a generator of ( 18 ) × (the other generator is 5 ):

    { 1 1 k 𝑚𝑜𝑑 18 0 k < 6 } = { 1 , 11 , 13 , 1 , 11 , 13 } .

    Since | ( 18 ) × | = φ ( 18 ) = 6 = | { 1 1 k 𝑚𝑜𝑑 18 0 k } | , 11 ¯ is a generator of ( 18 ) × , so

    ( 18 ) × = [ 11 ] 18

    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]

User profile picture
2026-02-21 12:42
Comments