0

I'm confused how to find solutions to questions like $11^{-1}\mod 26$ and others like these.

The solution is $19$ but I don't understand how. $11^{-1}$ on its own is $\frac{1}{11}$.

Thanks

RedOrange
  • 321
  • 2
  • 9
orange
  • 363

2 Answers2

4

In the context of modular arithmetic (and, in general, for abstract algebra), $x^{-1}$ does not mean the reciprocal, necessarily; rather, it means the multiplicative inverse.

That is, $x^{-1}$ is an element such that $xx^{-1}=1$ (where $1$ is whatever multiplicative identity lives in your algebraic universe).

So, to say that modulo $26$, $19=11^{-1}$, really means that $19\cdot11\equiv1\pmod{26}$. (In this case, note that $19\cdot11=209=26\cdot8+1$, so that $19\cdot11\equiv1\pmod{26}$.

Nick Peterson
  • 32,430
2

$$11\cdot 7=77=26\cdot 3-1=-1\pmod{26}\implies 11^{-1}=-7=19\pmod{26}$$

DonAntonio
  • 211,718
  • 17
  • 136
  • 287