Apply Euclidean Algorithm to compute GCD as shown in the left column.
It will verify that GCD(55,7)=1.
Then we will solve for the remainders in the right column.
55=7(7)+67=6(1)+16=1(6)+06=55−7(7)1=7−6(1) Use the equations in the right side and perform reverse operation as:
1=7−6(1) 1=7−[55−7(7)](1)1=7(8)+55(−1) Therefore 1=55(−1)mod7, or of we prefer a residue value for multiplicative inverse
1=55(6)mod7. Therefore, 7 is the multiplicative inverse of 55.
Comments