2

x,y into a Z (set of integers) and x related y if and only if x-y is a multiple of 3. Show that R is an equivalence relation on Z (set of integers).

I need to show proof. I don't know how to prove Transitivity. This is what I have done but don't know if is right.

Reflexive: x-x=0. So 0 is a multiple of 3. And 0 is an integer.

Symmetric: if x-y is a multiple of 3 then y-x is a multiple of 3.

Transitive: if x-y is a multiple of 3. Then y-z is a multiple of 3. So this leads to x-z is a multiple of 3.

2 Answers2

2

Hint: $(x-y)+(y-z) = x-z$

What do you know about adding multiples of a number $n$?

Aurey
  • 1,332
  • 8
  • 17
2

Let $\mathcal{R}$ be an equivalence relation such that $x\mathcal{R}y$ if and only if $x - y = 3k$ with $x, y, k \in \mathbb{Z}$. You have three things to prove.

(a) Is $\mathcal{R}$ reflexive? Clearly, as you have shown, $x - x = 0$ and $0$ surely is a multiple of $3$.

(b) Is $\mathcal{R}$ symmetric? If $x - y = 3k$ then $y - x = -3k = 3(-k) = 3j$ where $j = -k$.

(c) Is $\mathcal{R}$ transitive? Let $x - y = 3k$ and $y - z = 3j$. Then $(x - y) + (y - z) = 3k + 3j = 3(k + j).$ Now let $l = k+j$. Then $x - y + y - z = x - z = 3l$.

From these we conclude that $\mathcal{R}$ is an equivalence relation.

Does this help?

Edward Evans
  • 4,590