The question is to prove if x≡y (mod m), then (m,x) = (m,y). I think that I should start by showing that m|x-y and by the definition of division x-y=mq for some integer q. If I let d=(m,x) then I know that d is a linear combination of m and x such that d=mr+xs for some integers r,s. I can substitute to get d=mr+(mq+y)s=mr+mqs+ys. So now I have d=m(r+qs)+ys. Does that show, by BeZout's identity that d=(m,y)? Or am I wrong?
4 Answers
Hint $\ $ If $\ d\mid m\ $ and $\ x-y = km\ $ then $\ d\mid x\iff d\mid y.\,$ Therefore $\,m,x\,$ and $\,m,y\,$ have the same set $\,S\,$ of common divisors $\,d,\,$ hence the same greatest common divisor (= max $S).$

- 272,048
It only shows that $(m,y)$ divides $d= (m, x)$. Indeed, $(m,y)$ divides both $m$ and $y$ so it divides any linear combination of them, so $d$.
But if you invert the roles of $x$ and $y$, you will have the relation in the other order. So, $(m,y)=(m,x)$ (they divide each other).

- 1,306
If $m$ divides $x-y$ then $(x-y)=mq$ as you stated.
Then $mq+y=x$. Let $d=(m,y)$, $y=ds$, $m=dt$. Then
$$mq+y \iff d(tq+s)=x$$
So, $d\ |\ x$ and $d\ | \ m$. Suppose $d'$ also had this property. Then, since $y=x-mq$ and $d'$ divides the right-hand side, $d'\ |\ y$. That is, $d'$ divides both $m$ and $y$, hence $d' \ | \ d$, as $d$ is the greatest common divisor of $m$ and $y$.
Therefore all divisors $d'$ of both $m$ and $x$ divide $d$, so $(m,x)=d$.

- 12,320
We know m|x-y => mk=x-y. Also (m,x)=d => m=dk1, x=dk2. If we put these in the first equation (mk=x-y) we have: dk1k=dk2-y => y=d(k2-k1k) => d|y. So d divides y. Therefore, d|(y,m) => (x,m)|(y,m). (1)
In the same way we can show that (y,m)|(x,m). (2)
Considering (1) and (2) we can say (x,m)=(y,m).

- 11