I have always been intrigued as to how one would calculate the modulo of a very large number without a calculator. This is an example that I have come up with just now:
4239^4 mod 19043
The answer is 808, but that is only because I used a calculator. I read in books and online that you can break the modulo 19043 to its factors such that it is modulo 137 and 139 as (modulo (137*139)) is (modulo 19043).
I tried something like this...
4239^4 mod 137
=129^4 mod 137
=123
4239^4 mod 139
=69^4 mod 139
=113
But now I am stuck as to what to do next in Chinese Remainder Theorem
Solving $x\equiv 4239^4 \pmod {137\times 139}$ is equivalent to, from your work, solving the system: $$x\equiv 123\pmod {137}\\x\equiv113\pmod{139}$$
First congruence implies we can write $x = 123 + 137k$ for some integer $k$.
Plug this in second congruence and solve $k$:
$$\begin{align} 123+137k &\equiv 113\pmod{139}\\ 137k &\equiv -10\pmod{139}\\ -2k &\equiv -10\pmod{139}\\ k &\equiv 5\pmod{139}\\ \end{align}$$
That means we can write $k = 5+139u$ for some integer $u$.
Plug this back in $x$ : $$x=123+137k = 123+137(5+139u) = 808 + 137\times139u$$