Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 3.2.23 (Last two digits of $3^{3^{100}}$)

Exercise 3.2.23 (Last two digits of $3^{3^{100}}$)

Determinate the last two digits of 3 3 100 . [Determine 3 100 𝑚𝑜𝑑 φ ( 100 ) and use the previous exercise.]

Answers

Proof. First

φ ( 100 ) = φ ( 2 2 5 2 ) = φ ( 2 2 ) φ ( 5 2 ) = ( 2 2 2 ) ( 5 2 5 ) = 40 = 8 5 .

Since 3 4 1 ( 𝑚𝑜𝑑 5 ) , then 3 100 = ( 3 4 ) 25 1 ( 𝑚𝑜𝑑 40 ) , and since 3 2 1 ( 𝑚𝑜𝑑 8 ) , 3 100 = ( 3 2 ) 50 1 ( 𝑚𝑜𝑑 8 ) , So

3 100 1 ( 𝑚𝑜𝑑 5 ) , 3 100 1 ( mod 8 ) .

Since 5 and 8 are relatively prime, 3 100 1 ( 𝑚𝑜𝑑 40 ) , so

3 100 1 ( 𝑚𝑜𝑑 φ ( 100 ) ) .

There is some positive integer k such that 3 100 = 𝑘𝜑 ( 100 ) + 1 . By Euler’s Theorem (Exercise 22), 3 φ ( 100 ) 1 ( 𝑚𝑜𝑑 100 ) , therefore

3 3 100 = ( 3 φ ( 100 ) ) k 3 1 3 ( 𝑚𝑜𝑑 100 ) .

Hence the two last digits of 3 3 100 are 03 . □

Verification with Sagemath:

sage: a = mod(3,100)
sage: a^(3^100)
3

User profile picture
2025-12-06 17:03
Comments