I think that I got the answer, but am not quite sure whether or not it is correct.
Prove that $a^{25}$ mod 65 = $a$ mod 65 given that $a \in \mathbb{Z}$
I started off by using the Chinese Remainder Theorem (65 = 5 $\cdot$ 13 and gcd(5, 13) = 1) in order to get the following two equations:
$a^{25}$ mod 5 = $a$ mod 5
and
$a^{25}$ mod 13 = $a$ mod 13
After that, I used the theorem that states that:
$a^e \equiv a^{e \textrm{ mod } \phi(n)} \textrm{ mod } n$ if gcd(a, n) = 1
$\phi(5) = 4$ and $\phi(13) = 12$
Applying said theorem to the two equations above:
$a^{25 \textrm{ mod } 4}$ mod 5 = $a^1$ mod 5 = $a$ mod 5
and
$a^{25 \textrm{ mod } 12}$ mod 13 = $a^1$ mod 13 = $a$ mod 13
I know that the theorem states that gcd(a, n) = 1 which isn't necessarily the case, that's why I wasn't sure whether my solution was correct.