0

What is the meaning of q $\equiv 1\pmod p$?

If I were to write this as a definition, how would I explain with this means?

Bernard
  • 175,478
Ryan
  • 546

3 Answers3

1

The meaning is that $p$ divides $q$ with remainder $1$.

D.B.
  • 2,339
  • 8
  • 11
  • Thanks. I forgot to clarify in the original question, but I was supposed to write the meaning of it in terms of divisibility. But, it seems like you did just that. – Ryan May 25 '18 at 19:24
1

Maybe the simplest way to phrase it would be:

If you subtract 1 from q, you get a multiple of p.

user1390
  • 959
0

It means $p$ divides $q-1$.

$$q \equiv 1 \mod p$$

$$\implies q-1 \equiv 0 \mod p$$

$$\implies p | (q-1) $$

Hindu
  • 196