how can I prove that if gcd(a,m) == 1
then there exists module multiplicative inverse, and also there exists only 1 inverse
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 160 |
5 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
how can I prove that if gcd(a,m) == 1
then there exists module multiplicative inverse, and also there exists only 1 inverse
Name |
---|
Proof of existence:
The equation $$$ax+mk=1$$$ always has solution if $$$\gcd(a,m)=1$$$ (Bézout's lemma), so $$$x\bmod m$$$ is a modular multiplicative inverse of $$$a$$$.
Proof of uniqueness:
Assume that $$$p,q\,(0\le p < q < m, q - p = k)$$$ are two modular multiplicative inverses of $$$a$$$. This means $$$ap\equiv aq\equiv 1\pmod{m}$$$. If $$$\gcd(a,m)=1$$$, then $$$p\equiv q\pmod{m}$$$. This implies $$$p=q$$$, which leads to a contradiction.
Consider $$$0 \cdot a, 1 \cdot a, 2 \cdot a, ..., (m - 1) \cdot a$$$ mod $$$m$$$. They are different, because if $$$a \cdot i = a \cdot j$$$, then $$$a \cdot (i - j) = 0$$$ mod $$$m$$$, which is impossible since $$$gcd(a, m) = 1$$$ and $$$|i - j| < m$$$. Then, there exists and only one $$$b$$$: such $$$a \cdot b = 1$$$ mod $$$m$$$.