How do I solve this Diophantine equation using modulo?

  • Context:
  • Thread starter Thread starter Petrus
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 3K views
Petrus
Messages
702
Reaction score
0
Hello MHB,
I have hard understanding what we doing when we solve
$$35y \equiv 13(mod\ 97)$$
I understand we can rewrite that as
$$35y = 13+97m$$
if we replace $$m=-x$$ we got
$$97x+35y=13$$
I get $$gcd(97,35)=1 $$ that means we will have one soloution.
and the diophantine equation got soloution for $$ y=-468+97k
$$ and what shall I do next?

Regards,
 
Mathematics news on Phys.org
Hello MHB,
I finally saw what I did wrong! for people who is interested the soloution will be $$k=5 <=> y=17$$
What have we exactly calculated?
this is what we calculated:
$$35y \equiv 13(mod\ 97)$$
if we $$35*17=595$$ with other words if we take away 13 from 595 and divide by 97 we will get a integer as result so
$$595-13= 582$$ and now to se we get no rest with divide by 97.
$$\frac{582}{97}=6$$ so we solved it correctly!
Regards,
 
Last edited:
Petrus said:
Hello MHB,
I finally saw what I did wrong! for people who is interested the soloution will be $$k=5 <=> y=17$$
What have we exactly calculated?
this is what we calculated:
$$35y \equiv 13(mod\ 97)$$
if we $$35*17=595$$ with other words if we take away 13 from 595 and divide by 97 we will get a integer as result so
$$595-13= 582$$ and now to se we get no rest with divide by 97.
$$\frac{582}{97}=6$$ so we solved it correctly!
Regards,

Given the first order diophantine equation...

$\displaystyle 35 \cdot y \equiv 13\ \text{mod}\ 97$ (1)

... a standard way to solve it is to multiply both members by the multiplicative inverse of 35, if that multiplicative inverse do exists, obtaining...

$\displaystyle y \equiv 35^{-1} \cdot 13\ \text{mod}\ 97$ (2)

If n is prime, then any number mod n different from zero has one and only one multiplicative inverse. In Your case 97 is prime and the multiplicative inverse of 35 is 61 because $\displaystyle 35 \cdot 61 = 2135 = 97 \cdot 22 + 1$, so that the solution is...

$\displaystyle y = 61 \cdot 13 = 793 \equiv 17\ \text{mod}\ 97$ (3)

Kind regards

$\chi$ $\sigma$
 
Hello, Petrus!

Solve: .$$35y \,\equiv\, 13\text{ (mod 97)}$$
We have: .. .[tex]35y \:\equiv\:13\text{ (mod 97)}[/tex]

. . . . . . . . . [tex]35y \:\equiv\:-84\text{ (mod 97)}[/tex]

Divide by 7: .[tex]5y \:\equiv\:-12\text{ (mod 97)}[/tex]

Then: .[tex]5y \:=\:-12 + 97k[/tex]

Hence: .[tex]y \:=\:\frac{97k-12}{5} \:=\:19k-1 + \frac{2k-7}{5}[/tex]

Since [tex]y[/tex] is an integer, [tex]2k-7[/tex] must be a multiple of 5.
This happens when [tex]k = 1.[/tex]Therefore: .[tex]y \:=\:19(1) - 1 + \frac{2(1)-7}{5}[/tex]

. . . . . . . . .[tex]y \:=\:17\text{ (mod 97)}[/tex]
 
chisigma said:
Given the first order diophantine equation...

$\displaystyle 35 \cdot y \equiv 13\ \text{mod}\ 97$ (1)

... a standard way to solve it is to multiply both members by the multiplicative inverse of 35, if that multiplicative inverse do exists, obtaining...

$\displaystyle y \equiv 35^{-1} \cdot 13\ \text{mod}\ 97$ (2)

If n is prime, then any number mod n different from zero has one and only one multiplicative inverse. In Your case 97 is prime and the multiplicative inverse of 35 is 61 because $\displaystyle 35 \cdot 61 = 2135 = 97 \cdot 22 + 1$, so that the solution is...

$\displaystyle y = 61 \cdot 13 = 793 \equiv 17\ \text{mod}\ 97$ (3)

Kind regards

$\chi$ $\sigma$
Hello,
I wounder if it's anything wrong with the way I solve it? I just feel safe with it and I think that is the way we are supposed to solve it, well that is what I did and get correct answer.

Regards,
 
Petrus said:
Hello,
I wounder if it's anything wrong with the way I solve it? I just feel safe with it and I think that is the way we are supposed to solve it, well that is what I did and get correct answer.

Regards,

The great scope of Math is not to solve day by day the occasional problems one meets but to supply instruments to solve specific problems no matter how complex they are. In the modern cryptography diophantine equations similar to one You have proposed but with n a very large prime number are usual and some powerful algorithms for 'fast' discovery of the inverse multiplicative inverse of a number mod n with n very large prime have been found... Kind regards $\chi$ $\sigma$
 
Last edited:
Petrus said:
Hello,
I wounder if it's anything wrong with the way I solve it? I just feel safe with it and I think that is the way we are supposed to solve it, well that is what I did and get correct answer.

Regards,

Hi Petrus, :)

To know whether you solved using a correct method that applies to any Diophantine equation we need some more details. In your post #1, you haven't actually written down how you obtained, \(y=-468+97k\).