1

The question is to judge whether $4^{351012345} \equiv 5^{543213510}$ mod $231$ is true. I'm thinking of just directly calculating the exact modulus of both numbers using modular exponentiation but is there a better way to prove the equivalence holds using another method?

2 Answers2

2

As alluded to in comments, the prime factorization of $231=3\times7\times11$.

The Carmichael function of $231$ is thus lcm$(3-1,7-1,11-1)=30$.

Therefore, we merely have to prove that $4^{15}\equiv5^0=1\bmod231$,

which follows from $4\equiv1\bmod3, 4^3\equiv1\bmod7$, and $4^5\equiv1\bmod11$.

J. W. Tanner
  • 60,406
1

Hint $\bmod m=3,7, 11\!:\ 4^{\large 15n}\! = 2^{\large \color{#c00}{30}n}\!\equiv 1\equiv 5^{\large \color{#c00}{30}k}\,$ by $\,\phi(m)\mid \color{#c00}{30}\,$ & mod order reduction. Now apply CRT (or CCRT, $ $ i.e. $\,4^{\large 15n}\!- 5^{\large {30}k^{\phantom{|}}}\!$ is divisible by $3,7,11$ so also by their lcm = product = $231$).

Bill Dubuque
  • 272,048
  • 1
    Note: by casting out 3's both big exponents are divisible by $3$ since their digit sum is, and via last digits the expt on $4$ is divisible by $5$, and the expt on $5$ by $10$, so the expt on $4$ is divisible by $15$ and the expt on $5$ by $30$, all by trivial mental arithmetic. – Bill Dubuque Sep 13 '20 at 20:42