I'm trying to prove that if $x$ is a multiple of $3$, then $x + 1$ is not a multiple of $3$. This is a rather obvious fact, but I don't think I understand the solution.
Suppose that $x$ is a multiple of $3$ but, for the sake of contradiction, that $x + 1$ is likewise a multiple of $3$. Then $x = 3k$ for some $k \in \mathbb{Z}$ and $x + 1 = 3t$ for some $t \in \mathbb{Z}$. Then $3k + 1 = 3t$, so $3k - 3t = 1$ and hence $3(k-t) = 1$. Therefore $k - t = \frac{1}{3} \not \in \mathbb{Z}$, which is a contradiction, so $x + 1$ not a multiple of $3$, as desired.
The problem here is that the deduction $k - t = \frac{1}{3}$ followed by multiplying both sides by $\frac{1}{3}$, when division is not defined in $\mathbb{Z}$. Is this allowed? I'm trying to find another way to prove this from the axioms. Another possibility is to simply argue that $3 \mid 3(k-t)$ so $3 \mid 1$, which is an absurdity, as the only divisors of $1$ are $\pm 1$, and be done at that step.
I'd appreciate some feedback on whether each of these two proof strategies are correct and which would be preferable in this instance.