Step 1: Convert our power of 100 to binary notation:
Using our binary calculator, we see that 100 in binary form is 1100100
The length of this binary term is 7, so this is how many steps we will take for our algorithm below
Step 2: Construct Successive Squaring Algorithm:
i
a
a2
a2 mod p
0
2
2
2 mod 17 = 2
1
2
4
4 mod 17 = 4
2
4
16
16 mod 17 = 16
3
16
256
256 mod 17 = 1
4
1
1
1 mod 17 = 1
5
1
1
1 mod 17 = 1
6
1
1
1 mod 17 = 1
Step 3: Review red entries
Look at the binary term with values of 1 in red
This signifies which terms we use for expansion:
Final Answer
1 x 1 x 16 = 16 mod 17 = 16
What is the Answer?
1 x 1 x 16 = 16 mod 17 = 16
How does the Modular Exponentiation and Successive Squaring Calculator work?
Free Modular Exponentiation and Successive Squaring Calculator - Solves xn mod p using the following methods: * Modular Exponentiation * Successive Squaring This calculator has 1 input.
What 1 formula is used for the Modular Exponentiation and Successive Squaring Calculator?
Successive Squaring I = number of digits in binary form of n. Run this many loops of a2 mod p