3

Decide whether the equation has solutions and if it does, find them all.

$10x \equiv 14 \pmod {17}$

Since $17\mid 10x-14$, $x$ must have the following form $x=\frac{17y+14}{10}$. $x$ belongs to natural numbers therefore, $10\mid 17y+14$ and the only solutions are the ones where $y$ finishes in $8$ if $y>0$ or in $2$ if $y<0$.

So $y=\{8,28,38,\ldots\}$. Then $x= \{15,49,66,\ldots\}$ $y=\{\ldots,-32,-22,-12\}$. Then $x=\{\ldots,-66,-49,-15\}$

Isn't there an infinity of solutions? I am not sure if my solution is correct. Any ideas?

user26486
  • 11,331
KeykoYume
  • 492
  • There are infinitely many solutions, but they all belong to the same congruence class. You want to approach this problem with first checking if $\gcd(10, 17) = 1$ (guaranteeing a unique solution), and then using the Euclidean Algorithm to find the inverse of $10$ modulo $17$. – apnorton Feb 12 '15 at 00:48
  • What if $10$ is replaced with, say, $7$? – Bernard Feb 12 '15 at 00:49

1 Answers1

1

Hint $\,\ {\rm mod}\ 17\!:\,\ 10x\,\equiv\, 14\iff x\,\equiv\,\dfrac{14}{10}\,\equiv\, \dfrac{14}{-7}\,\equiv\, -2$

Beware $\ $ Modular fraction arithmetic is well-defined only for fractions with denominator coprime to the modulus. See here for further discussion.

Bill Dubuque
  • 272,048