Suppose $a,b\in\mathbb{Z}$ and $n\in \mathbb{N}$. Is the equation
$$((a+n)(b+n)) mod_2 = ((a-n)(b-n)) mod_2$$
satisfied?
This is not a homework or such. (I'm not a student) I need to decide if two signs are equal. Unfortunately I don't know really how to solve these kind of congruence equations.
Although I ultimately only need the answer, a derivation would however be nice, too.
Starting from the LHS \begin{equation} \begin{aligned} ((a+n)(b+n))mod_2 =& (ab+an+bn+n^2)mod_2 \\ =&(ab-an-bn +n^2)mod_2 \\ =&((a-n)(b-n))mod_2 \end{aligned} \end{equation} Where we have used the fact that $(-x)mod_2 = (x)mod_2$}