Bootstrap
  E.E.A. .com
It doesn't have to be difficult if someone just explains it right.

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:


Input

Algorithm

Choose which algorithm you would like to use.

Numbers

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.

n=
b=


Output

This is the calculation for finding the multiplicative inverse of 928 mod 611 using the Extended Euclidean Algorithm:
nbqr t1t2t3
6119280611010
9286111317101
611317129401-1
3172941231-12
294231218-12-25
2318152-2527
18533-2527-106
531227-106133
3211-106133-239
2120133-239611
Answer

So $t = -239$. Now we still have to apply $\pmod{n}$ to that number: $$-239 \pmod{611} ≡ 372$$ So the multiplicative inverse of $928$ modulo $611$ is $372$.

Verification

Let $t$ be the answer we just found, so $t=372$. We also have $b=928$ and $n=611$.
If our answer is correct, then $t \times b \pmod{n} \equiv 1 \pmod{n}$.
Let's see if that's indeed the case. \[ \begin{aligned} t \times b \pmod{n} &\equiv \\ 372 \times 928 \pmod{611} &\equiv \\ 345216 \pmod{611} &\equiv1 \pmod{611} \\&\equiv 1 \pmod{n}\end{aligned} \]