I m trying to solve the answer for this question using Eulers Theorem to calculate the exponential modulo.
3^2000 (mod 12). Cannot apply Euler's theorem since gcd(3,12) is not equal to 1 .
Is there any way to convert this to another form where gcd() is equal to one and can apply Euler's Theorem?
$3^{2000}\equiv0\pmod 3$ and $3^2\equiv1\pmod4$,
so $3^{2000}\equiv9\pmod{12}$ by the Chinese remainder theorem.