How to calculate modulus of 5^55 modulus 221 without much use of calculator?
I guess there are some simple principles in number theory in cryptography to calculate such things.
|
|
Okay, so you want to calculate First, reduce
By doing this, we avoid numbers larger than As an example, let's compute
Therefore, Now, we can improve this by using exponentiation by squaring; this is the famous trick wherein we reduce exponentiation to requiring only
Thus, since 55 = 110111 in binary
Therefore the answer is
so that
In the step where we calculate The above algorithm formalizes this idea. |
|||||||||||||||
|
|
To add to Jason's answer: You can speed the process up (which might be helpful for very large exponents) using the binary expansion of the exponent. First calculate 5, 5^2, 5^4, 5^8 mod 221 - you do this by repeated squaring:
Now we can write
You can see how for very large exponents this will be much faster (I believe it's log as opposed to linear in b, but not certain.) |
|||||||||||
|
|
|||
|
|
|
What you're looking for is modular exponentiation, specifically modular binary exponentiation. This wikipedia link has pseudocode. |
|||
|
|
|
Chinese Remainder Theorem comes to mind as an initial point as 221 = 13 * 17. So, break this down into 2 parts that get combined in the end, one for mod 13 and one for mod 17. Second, I believe there is some proof of a^(p-1) = 1 mod p for all non zero a which also helps reduce your problem as 5^55 becomes 5^3 for the mod 13 case as 13*4=52. If you look under the subject of "Finite Fields" you may find some good results on how to solve this. EDIT: The reason I mention the factors is that this creates a way to factor zero into non-zero elements as if you tried something like 13^2 * 17^4 mod 221, the answer is zero since 13*17=221. A lot of large numbers aren't going to be prime, though there are ways to find large primes as they are used a lot in cryptography and other areas within Mathematics. |
|||||||
|
|
||||
|
|
|
This is part of code I made for IBAN validation. Feel free to use.
|
|||
|
|
|
Jason is saying that as opposed to first calculating 5^55 and then applying mod 21, you start with 5 mod 221, multiply the result by 5, and loop for a total of 54 times. I.e.
Eventually, you'll calculate 5^55 mod 221 |
|||
|
|