Find the last three digits of $17^{102}$.
That is we have to find out $17^{102}\equiv ?\pmod{1000}$.
Now if we solve it through general congruence relation , then the process becomes very difficult , computational and laborious. Again from Euler's theorem , $$17^{\phi(1000)}\equiv 1 \pmod{1000}.$$ But $\phi(1000)=400(>102)$. So it can't help me.
Does there any simplest way to solve this congruence relation easily ?
You want to use Carmichael's theorem to see that $17^{100} \equiv 1 \mod 1000$.
Carmichael's theorem states that if $a$ and $n$ are coprime, then $a^{\lambda(n)} \equiv 1 \mod n$, where $\lambda(n)$ is the Carmichael function.
$\lambda(n)$ can be calculated recursively for $n = p_1^{a_1} p_2^{a_2} \dots p_k^{a_k}$ as $\lambda(n) = LCM( \lambda(p_1^{a_1}), \lambda(p_2^{a_2}), \dots, \lambda(p_k^{a_k})) $, where $\lambda(n) = \phi(n)$ for $n$ a power of an odd prime or $2,4$ and $\lambda(n) = \frac{1}{2} \phi(n)$ for $n = 2^k$ for $k > 2$.
For $n = 1000 = 2^3 5^3$, we get that $\lambda(n) = LCM(\frac{1}{2} \phi(2^3), \phi(5^3) ) = LCM(2,100) = 100$.