When can you divide a congruence?
You can divide both sides of a congruence relation when the number you’re diving and the mod are co-prime.
For example, you cannot divide the congruence $30 \equiv 42 (\textrm{mod}\ 4) $ by $6$ because $6$ and $4$ are not co-prime. (as $ \gcd (6,4) = 2 \not= 1 $).
Claim: If $ka \equiv kb ~ (\textrm{mod}\ n)$ and $ \gcd(k,n) = 1 $, then $ a \equiv b ~ (\textrm{mod}\ n)$.
Proof: As, $ka \equiv kb ~ (\textrm{mod}\ n)$, we have $n \mid k(a - b)$, but as $\gcd (k,n) = 1$, $n \nmid k$. So, we have, $n \mid (a - b)$. Therefore, $a \equiv b ~ (\textrm{mod}\ n)$. $ \blacksquare $
Solving Linear Congruence
We have to Solve,
\[ 17x \equiv 3 ~ (\textrm{mod}\ 29) \]
As, $17$ and $29$ are co-prime, we can divide the congruence on both sides by $17$ to get,
\begin{equation} \label{SLC1} x \equiv 3\cdot17^{-1} ~\textrm{mod}~29 \end{equation}
So, we need to find the modular multiplicative inverse of $17$.
Using Fermat's Little Theorem
As, 29 is a prime, we can use FLT. Refer to Modular Multiplicative Inverse using Fermat’s Little Theorem. We need to find,
\[ 17^{29 - 2} ~(\textrm{mod} ~ 29) \] or, \[ 17^{27} ~(\textrm{mod} ~ 29) \]
Refer to Exponentiation By Squaring to compute the above term. After computing, we’ll have,
\[ 17^{27} \equiv 12 ~(\textrm{mod}~29) \]
From \eqref{SLC1}, we then have,
\begin{eqnarray} & & x \equiv 3\cdot17^{-1} ~(\textrm{mod}~29) \nonumber \newline & & x \equiv ((3 ~\textrm{mod}~29) \cdot (17^{-1} ~\textrm{mod}~29)) ~(\textrm{mod}~29) \nonumber \newline & & x \equiv 3 \cdot 12 ~(\textrm{mod}~29) \nonumber \newline \end{eqnarray}
Finally, \[ x \equiv 7 ~(\textrm{mod}~29) \]
Using Euclidean Algorithm
We need to find $v$ such that,
\begin{equation} \label{SLCEA1} 17v \equiv 1 ~(\textrm{mod}~29) \end{equation}
\eqref{SLCEA1} can be rewritten as,
\[ 17v = 1 + 29w\]
For some $w \in \mathbb{Z}$. Rearranging the equation we have,
\begin{equation} \label{SLCEA2} 17v - 29w = 1 = \gcd(17,29) \end{equation}
From Bezout’s Identity, we know there exists solution to \eqref{SLCEA2}. After computing, we’ll find that,
\[ 17 \cdot 12 + 29 \cdot (-7) = 1\]
Therefore, $v = 12$. And the rest follows similarly as Fermat’s Little Theorem.
Sharing is caring. Share this story in...
Share: Twitter Facebook LinkedIn