Boolean equation - bitwise AND operator

158 Views Asked by At

I have equation: (x AND B) XOR x = C where x - is unknown variable, B and C are constant.

I need just one solution x that will satisfy this equation. How I can do this?

1

There are 1 best solutions below

0
On

There exists no solution that will satisfy all cases. If $B$ and $C$ are true, then no values of $x$ satisfy the equation.