Given a set of natural numbers ($\Bbb N$), and the relation $R=\{(a,b)\in\Bbb N^2: 5\mid (2a+3b)\}$. Is $R$ an equivalent relation?
My answer: Yes, because $2a + 3b$ is divisible by $5$, if and only if, $2a + 3b − 5b$ is divisible by $5$.
Is my reasoning right?
If it is not, then how do I prove that this is an equivalent relation?
For future reference, you can prove that something is an equivalence relation like this:
Reflexivity: For all $a\in \Bbb N$, $2a+3a = 5a$ is divisible by $5$. Hence, $a\sim a$.
Symmetry: Consider $a,b\in \Bbb N$. If $a\sim b$, then $2a+3b = 5k$ for some $k \in \Bbb N$. Then \begin{align} 3a + 2b &= (5a + 5b) - (2a + 3b)\\ &= 5(a+b) - 5k\\ &= 5(a+b-k) \end{align} So if $a\sim b$, then $b\sim a$.
Transitivity: Consider $a,b,c\in \Bbb N$. If $a\sim b$ and $b\sim c$, then $2a + 3b$ and $2b+3c$ are both divisible by $5$. That is, $\exists k,\ell \in \Bbb N$ such that $2a+3b = 5k$ and $2b + 3c = 5\ell$. Then \begin{align}5k + 5\ell &= (2a+3b) + (2b + 3c)\\ &=2a + 3c + 5b\end{align} So we may write $2a + 3c = 5(k + \ell - b)$. Thus, if $a\sim b$ and $b\sim c$, then $a\sim c$.