Specifically the inverse of 101 and with n = 31200.
$101^{-1} \mod 31200 $
Specifically the inverse of 101 and with n = 31200.
$101^{-1} \mod 31200 $
On
You can use the Carmichael function $\lambda(n)$ to reduce the exponent.
$$\Rightarrow 101^{120} \equiv 1 \pmod n$$
Remains to find $101^{119}\mod n$. This is quickly done by factoring the module:
Now, Chinese remainder theorem gives
$$101^{-1 }\equiv101^{119} \equiv 13901 \pmod {31200}$$
By Euler's theorem, $101^{\phi(31200)}=101^{7680}\equiv1\bmod 31200$, so $101^{-1}\equiv101^{7679}\bmod31200$.
This may not be the most efficient way to find ${101}^{-1}$ though.