I need to know how to use XOR properly on more than two variables. I have following example.
a xor b xor c
Now, the way I understand it is that:
$a$ xor $b$ = $a$ * not $b$ + not $a$ * $b$
That part is fairly simple for me to understand but how does the next part work? I imagine it goes like this.
($a$ * not $b$ + not $a$ * $b$) xor $c$
So, how can I use XOR on more than one variable?
Use
a xor b = a * not b + not a * b
again, but this time, in place of b put c and in place of a put
(a * not b + not a * b)