Find the last three digits of $6^{2002}$. I did some work and figured out that the last two digits is 36. Can anyone help me with the hundredth digit? By the way, I used modular arithmetic and the recursion method for the tens digit, but it fell short when I attempted to do the hundreds digit. Thank you in advance!
How I figured out the last two digits: I used the formula $\frac {1}{10^k} [n-a_k (n)]$. The last digit is obviously 6. I obtained the tens digit this way: $\frac {1}{10}(6^{2002}-6)=\frac {6}{10}(6^{2001}-1)=\frac {3}{5} (6^{2001}-1)=\frac {3}{5}(6-1)(6^{2000}+6^{1999}+...+6^2+6+1)=3(6^{2000}+6^{1999}+...+6^2+6+1)\equiv3(6+6+...+6+6+1)=3(2000\cdot6+1)\equiv3 (mod 10)$ Therefore, the last two digits of $6^{2002}$ are $36$.
It is possible to do this without the Chinese Remainder Theorem, just using the binomial expansion. Note that $$\begin{align}2^{500k} &= (30+2)^{100k} = 2^{100k} \pmod{1000},\\ 2^{10k} &= (1000+24)^k \equiv 24^k \pmod{1000},\\ 24^{5k} &= 2^{15k}3^{5k} = (32000+768)^k 243^k \equiv (768\cdot 243)^k \pmod{1000} \\ &\equiv (100+600+580+344)^k \pmod{1000} \equiv 624^k \pmod{1000},\end{align}$$ and $$\begin{align} 624^{4k} &= (600+24)^{4k} \equiv 4k\cdot 600\cdot 24^{4k-1} + 24^{4k} \pmod{1000} \\ &\equiv (100k + 1)\cdot 24^{4k} \pmod{1000}.\end{align}$$ In particular, $$\begin{align} 2^{4000} &\equiv 2^{10\cdot 80} \pmod{1000} \equiv 24^{5\cdot 16} \pmod{1000} \\ &\equiv 624^{16} \pmod{1000} \equiv (401)24^{16} \pmod{1000} \\ &\equiv 24(401)624^3 \pmod{1000} \equiv (8020+1604)624^3 \pmod{1000} \\ &\equiv 624^4 \pmod{1000} \equiv (101)24^4 \pmod{1000}.\end{align}$$
We then have $$\begin{align} 6^{2002} &= (10-4)^{2002} \\ &= \binom{2002}{2} 100\cdot 4^{2000} - 2002\cdot 10\cdot 4^{2001} + 4^{2002} \pmod{1000},\end{align}$$ so $$\begin{align} &6^{2002} \\ &\equiv 100\cdot 24^4(101)(1000+1)(2000+1) - 80\cdot 24^4(101)(1000+1) + 16\cdot 24^4(101) \pmod{1000} \\ &\equiv (100-80+16)\cdot 24^4\cdot 101 \pmod{1000} \equiv 36(101)24^4 \pmod{1000} \\ &\equiv (53/2)\cdot 24^5 \pmod{1000} \equiv 53\cdot 312 \pmod{1000} \equiv 600 + 936 \pmod{1000} \\ &\equiv \color{red}{536} \pmod{1000}.\end{align}$$