Questions: Euler's Theorem

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You need to compute 3^100 mod 7. Applying Euler's theorem with φ(7) = 6, which computation is correct?

A3^100 ≡ 3^(100 mod 7) ≡ 3^2 ≡ 2 (mod 7) — reduce the exponent by the modulus
B3^100 ≡ 3^(100 mod 6) ≡ 3^4 ≡ 81 ≡ 4 (mod 7) — reduce the exponent modulo φ(7)
C3^100 ≡ 1 (mod 7) — Euler's theorem says any power of any number is 1 mod the modulus
D3^100 ≡ 3^(100 mod 3) ≡ 3^1 ≡ 3 (mod 7) — reduce by the base
Question 2 Multiple Choice

A student wants to apply Euler's theorem to compute 6^10 mod 9. They note φ(9) = 6 and conclude 6^10 ≡ 6^(10 mod 6) ≡ 6^4 (mod 9). What is wrong?

Aφ(9) is not 6; it should be 3
BThe exponent reduction rule uses φ(n) − 1, not φ(n)
CEuler's theorem requires gcd(a, n) = 1, but gcd(6, 9) = 3 ≠ 1, so the theorem does not apply
DNothing — the computation is correct
Question 3 True / False

Fermat's Little Theorem — that a^(p−1) ≡ 1 (mod p) for any prime p not dividing a — is a special case of Euler's Theorem.

TTrue
FFalse
Question 4 True / False

Euler's theorem states that a^φ(n) ≡ 1 (mod n) holds for most integer a, including those that share a common factor with n.

TTrue
FFalse
Question 5 Short Answer

Explain in your own words why the proof of Euler's theorem works — why does multiplying all units modulo n by a fixed unit a give back the same set of units?

Think about your answer, then reveal below.