-1

I am trying to learn congruence equations for discrete mathematics but this concept is actually giving me a lot of issues. In this instance:

$$15x + 12 \equiv −11 (\text{mod }49)$$

And so I tried it like this:

$$15x \equiv −23 (\text{mod }49)\\ 15x \equiv 26 (\text{mod }49)\\ 1 = 49(4)+15(-13)$$ (From Euclidean Algorithm)

From here I don't actually know what to do anymore. I know I need the inverse modulo n but I don't know which one it is, and I also don't know what to do with it anyway. Can anyone help me figure out how to solve these equations?

Bill Dubuque
  • 272,048
James
  • 73

1 Answers1

0

The equation $1 = 49(4)+15(-13)$ tells you that $15*(-13)$ is the same as $1$ (modulo $49$).

Therefore the equation you obtained by multiplying by $-13$ tells you that $x ≡ 26 * (-13)$(mod $49$).

user1172706
  • 1,405