Difference between revisions of "Euler's Totient Theorem Problem 2 Solution"
Borealbear (talk | contribs) (Created page with "==Problem== (BorealBear) Find the last two digits of <math> 3^{3^{3^{3}}} </math>. ==Solution== This problem is just asking for <math> 3^{3^{3^{3}}}\pmod{100} </math>. We ca...") |
Borealbear (talk | contribs) m |
||
Line 5: | Line 5: | ||
This problem is just asking for <math> 3^{3^{3^{3}}}\pmod{100} </math>. We can start by expanding the uppermost exponent, which gives us <math> 3^{3^{27}} </math>. Then, since <math> \phi(100)=40 </math>, the exponent will be equal to <math> 3^{27}\pmod{40} </math>. We can see that <math> 3^4\equiv 81\equiv 1\pmod{40} </math>, so the expression simplifies to <math> 3^3\equiv 27\pmod{40} </math>. | This problem is just asking for <math> 3^{3^{3^{3}}}\pmod{100} </math>. We can start by expanding the uppermost exponent, which gives us <math> 3^{3^{27}} </math>. Then, since <math> \phi(100)=40 </math>, the exponent will be equal to <math> 3^{27}\pmod{40} </math>. We can see that <math> 3^4\equiv 81\equiv 1\pmod{40} </math>, so the expression simplifies to <math> 3^3\equiv 27\pmod{40} </math>. | ||
− | We're now left with finding the last two digits of <math> 3^{27} </math>. To do this, we use [[Chinese Remainder Theorem]]. We find that it is <math> 3 </math> mod <math> 4 </math> and <math> 12 </math> mod <math> 25. </math> From here, we use guess+check to get <math> \boxed{87} </math>. | + | We're now left with finding the last two digits of <math> 3^{27} </math>. To do this, we use [[Chinese Remainder Theorem]]. We find that it is <math> 3 </math> mod <math> 4 </math> and <math> 12 </math> mod <math> 25. </math> From here, we use guess+check to get <math> \boxed{87} </math>. -BorealBear |
Revision as of 19:17, 23 April 2021
Problem
(BorealBear) Find the last two digits of .
Solution
This problem is just asking for . We can start by expanding the uppermost exponent, which gives us . Then, since , the exponent will be equal to . We can see that , so the expression simplifies to .
We're now left with finding the last two digits of . To do this, we use Chinese Remainder Theorem. We find that it is mod and mod From here, we use guess+check to get . -BorealBear