It is fairly straightforward to perform a modulus operation on small numbers by hand, but is there an easy way to find the modulus of larger numbers based on the smaller roots? For example:
180 mod 13 is 11. Is there an easy way to find, by hand, the following:
- 180^2 mod 13
- 180^4 mod 13
- 180^8 mod 13
- 180^12 mod 13