0

I am trying to do example 3.6 from this http://www.cs.fsu.edu/~lacher/courses/MAD3105/lectures/s1_3equivrel.pdf script, but I am not sure what does $(\text{mod}\ m)$ means.

Can somebody explain it to me. Thanks.

depecheSoul
  • 913
  • 7
  • 13

2 Answers2

2

$m\mid a-b$ as a whole meaning of $a\equiv b$ mod (m)

Myshkin
  • 35,974
  • 27
  • 154
  • 332
1

a= k*m + b ; b is the rest of the euclidian division of a by m

mounaim
  • 264
  • Not true. If it were $\ b = (a\ {\rm mod}\ m)\ $ then you could say that $,b,$ is the remainder of $,a,$ modulo $,m.,$ But the notation $,a\equiv b\pmod{m},$ means precisely that $,m\mid a-b,,$ which does not imply anything about the size of $,a,b.\ \ $ – Bill Dubuque Feb 12 '14 at 15:35