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 347800 mod 921 using the Extended Euclidean Algorithm:
nbqr t1t2t3
9213478000921010
347800921377583101
921583133801-1
58333812451-12
338245193-12-3
245932592-38
9359134-38-11
59341258-1119
342519-1119-30
2592719-3079
9712-3079-109
723179-109406
2120-109406-921
Answer

So $t = 406$. Now we still have to apply $\pmod{n}$ to that number: $$406 \pmod{921} ≡ 406$$ So the multiplicative inverse of $347800$ modulo $921$ is $406$.

Verification

Let $t$ be the answer we just found, so $t=406$. We also have $b=347800$ and $n=921$.
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 \\ 406 \times 347800 \pmod{921} &\equiv \\ 141206800 \pmod{921} &\equiv1 \pmod{921} \\&\equiv 1 \pmod{n}\end{aligned} \]