I'm having some troubles understanding the solution (going from step $2$ to step $3$) of this linear congruence equation. Here's the problem with the solution:
Solve the congruence $2x + 11 \equiv 7 \pmod 3$.
First, we reduce all the coefficients $\pmod 3$:
$$2x + 2 \equiv 1 \pmod 3. \tag{1}$$
Next, we add $1$ to both sides, using the fact that $2 + 1 \equiv 0 \pmod 3$:
$$2x \equiv 2 \pmod 3. \tag{2}$$
Finally, we multiply both sides by $2$, using the fact that $2 · 2 = 4 \equiv 1 \pmod 3$:
$$x \equiv 1 \pmod 3. \tag{3}$$
That is, any number in the set $\{\ldots, −5, −2, 1, 4, \ldots\}$ will solve the original congruence.
Like I said my problem is the step between $(2)$ and $(3)$. If I multiply both sides of $(2)$ by $2$ I get:
$$4x \equiv 4 \pmod 3.$$
Now, I understand that $4$ is congruent to $1 \pmod 3$ so the RHS "simplifies" to $1 \pmod 3$ but I don't understand why the LHS "simplifies" to $x$. Can someone help me with this?