I have this system of equations
a⊕0⊕c⊕0⊕0⊕0=2
0⊕b⊕0⊕d⊕0⊕0=3
a⊕0⊕0⊕0⊕x⊕0=4
0⊕b⊕0⊕0⊕0⊕y=8
0⊕0⊕c⊕0⊕x⊕0=6
0⊕0⊕0⊕d⊕0⊕y=11
⊕ is XOR
when i solve this equations using Gaussian, following Denley Bihari's method here
it gives me this:
1 0 1 0 0 0 = 2
0 1 0 1 0 0 = 3
0 0 1 0 1 0 = 6
0 0 0 1 0 1 = 11
0 0 0 0 0 0 = 0
0 0 0 0 0 0 = 0
that's DNE,although the answer is
a=5
b=10
c=7
d=9
x=1
y=2
(I had the constants values first then i formed the equations ofcourse)
so what's the proper way to do this? I've searched the web high and low!
your help is much appreciated