Does anyone know any efficient ways to solve this without Euler's Totient Theorem or Chinese remainder theorem?
2026-04-01 14:28:47.1775053727
Solving $4^{667} ≡ x \pmod{13}$ without Eulers totient theorem or CRT
89 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
As $5*13=65$ we have
$$4^3 \equiv -1 \pmod{13}$$
Even without this observation, you can calculate $4,4^2, 4^3, ... \pmod{13}$ and since there are only at most 12 posibilities you know that the powers must repeat after at most 12 steps. Find the repeating pattern.
Note: As you calculate, you can make each number in the sequence $4,4^2, 4^3, ... \pmod{13}$ between $0$ and $12$ which makes the computation simpler.