Calculator
For the Euclidean Algorithm, Extended Euclidean Algorithm and multiplicative inverse.
Before you use this calculator
If you're used to a different notation, the output of the calculator might confuse you at first.
Even though this is basically the same as the notation you expect. If that happens, don't panic.
Just make sure to have a look the following pages first and then it will all make sense:
- Euclidean Algorithm
For the basics and the table notation - Extended Euclidean Algorithm
Unless you only want to use this calculator for the basic Euclidean Algorithm. - Modular multiplicative inverse
in case you are interested in calculating the modular multiplicative inverse of a number modulo n
using the Extended Euclidean Algorithm
Input
Choose which algorithm you would like to use.
Enter the input numbers. Note that you need to enter n before b.
E.g. if you want to know the multiplicative inverse of 26 mod 11, then use n=11 and b=26.
Output
n | b | q | r | t1 | t2 | t3 |
---|---|---|---|---|---|---|
589 | 926 | 0 | 589 | 0 | 1 | 0 |
926 | 589 | 1 | 337 | 1 | 0 | 1 |
589 | 337 | 1 | 252 | 0 | 1 | -1 |
337 | 252 | 1 | 85 | 1 | -1 | 2 |
252 | 85 | 2 | 82 | -1 | 2 | -5 |
85 | 82 | 1 | 3 | 2 | -5 | 7 |
82 | 3 | 27 | 1 | -5 | 7 | -194 |
3 | 1 | 3 | 0 | 7 | -194 | 589 |
So t = -194. Now we still have to apply mod n to that number:
-194 mod 589 ≡ 395
So the multiplicative inverse of 926 modulo 589 is 395.
Let i be the answer we just found, so i=395. We also have b=926 and n=589.
If our answer is correct, then i × b (mod n) ≡ 1 (mod n)
.
Let's see if that's indeed the case.
i × b (mod n) ≡
395 × 926 (mod 589) ≡
365770 (mod 589) ≡
1 (mod 589)
i × b (mod n) ≡ 1 (mod n)
, so our calculation is correct!