I tried to calculate the last two digits of $9^{9^9}$ using Euler's Totient theorem, what I got is that it is same as the last two digits of $9^9$.
How do I proceed further?
|
I tried to calculate the last two digits of $9^{9^9}$ using Euler's Totient theorem, what I got is that it is same as the last two digits of $9^9$. How do I proceed further? |
||||
|
|
|
At this point, it would seem to me the easiest thing to do is just do $9^9 \mod 100$ by hand. The computation should only take a few minutes. In particular, you can compute $9^3$ and then cube that. |
|||||
|
|
Euler's Theorem is not needed. It can be solved completely using only the Binomial Theorem: $$\rm 9^{10}\: =\ (10-1)^{10} =\: (-1)^{10} - 10\cdot 10 + 10^2\:(\cdots)\ \equiv\ 1\ \ (mod\ 100)$$ Hence $\rm\ mod\ 100:\ \ 9^{\:9^9}\!\equiv\ 9^{\:9^9\ mod\ 10}\ \equiv\ 9^{\:(-1)^9}\! \equiv\ 1/9\ \equiv\ {-99}/9\ \equiv\ {-}11\ \equiv\ 89\:. $ |
|||||
|
|
By the binomial theorem, we have $$(-1+10)^9\equiv{9\choose0}(-1)^910^0+{9\choose1}(-1)^810^1+{9\choose2}(-1)^7{\color{Red}{10^2}}+\cdots$$ $$\equiv-1+90=89\pmod{10^2}.$$ (All summands with powers of $10$ greater than $1$, the first instance in red, can be ignored.) |
|||
|