I have a conjecture: If $B \neq C$, then
$$ A\ \text{XOR}\ B \neq A\ \text{XOR}\ C $$
Is it true? If so, how to prove it?
What I tried:
I think I have proven the contrapositive qualitatively by writing a binary representation of $A$. Let $a_i, b_i, c_i$ be $i$th bit of $A, B, C$. To make $A\ \text{XOR}\ B = A\ \text{XOR}\ C$, $b_i = c_i$ shall be satisfied for all $i$.
But I have no quantitative proof.
The standard algebraic proof is by the contrapositive and uses the following properties of XOR (which I'll denote using $\oplus$):
From this, we assume $A \oplus B = A \oplus C$. Then $$\begin{align*}B &= 0 \oplus B \\ &= (A \oplus A)\oplus B \\ &=A \oplus (A \oplus B) \\ &= A \oplus (A \oplus C) \\ &= (A \oplus A) \oplus C \\ &= 0 \oplus C \\ &= C. \end{align*}$$