I am trying to understand the inverse of a modulo.
I want to find the numbers in the range $1,2,3...11$ modulo $11$ that has an inverse.
I am confused and I can't understand how to identify which numbers modulo $11$ has an inverse.
Is the above exactly the same as the relatively prime numbers of 411$ ?
Yes, only numbers which are relatively prime to 11 will have an inverse $\mod {11}$. Of, course that would be all numbers $\{1,\ldots, 10\}$.
To find the inverse of a number $a\pmod{11}$ must find a number $n$ such that $an\equiv 1\pmod{11}$, or equivalently a pair of numbers such that $an+11m=1$. So use the Euclidean algorithm to find these numbers.