Quote:
Originally Posted by shadow147 Hello,
Can anyone help me simplifying this term?
a AND (a xor b)
I know that I can write it like this:
(a AND not b) OR (not a AND b)
But how to simplify further? Would be grateful for any help. Thanks! |
(a AND not b) OR (not a AND b)
This is just equivalent to (a xor b), not the initial formula.
But, it turns out that all you need is the left disjunct.
That's the (perfect) disjunctive normal form for the initial formula.