I need to find out the modular inverse of 5(mod 11), I know the answer is 9 and got the following so far and don't understand how to than get the answer. I know how to get the answer for a larger one such as 27(mod 392) but am stuck because they are both low numbers.
11=5 (2)+1
5=1 (5)
Answer
In finding a modular inverse, you are trying to solve the modular equation
ax≡1(modn).
Ordinarily, you use the Extended Euclidean Algorithm for this to solve the equation ax+ny=1. If the numbers a, and n are small, then simple trial and error is probably just as fast or faster.
For your example, we have a=5 and n=11, which means would could just use trial and error.
1⋅5≡52⋅5≡103⋅5≡15≡44⋅5≡20≡−25⋅5≡25≡36⋅5≡30≡−37⋅5≡35≡28⋅5≡40≡−49⋅5≡45≡110⋅5≡50≡−5
Since 9⋅5≡1 then we have found the modular inverse to be 9.
When looking at those numbers on the far right side, keep in mind that any multiple of 11 made be added or subtracted to the modulus and it is still equivalent. That is, −3≡30≡8 since −3+3(11)=30 and 8+2(11)=30.
No comments:
Post a Comment