Simplifying Simple Boolean XOR Expression (!AB + A!B)

713 Views Asked by At

I am trying to simplify the 5 gate XOR from a A!B + !AB expression to a (A + B)!(A + B) implementation. How can I convert expressions like these requiring 5 gates to a simpler 3 gate implementation when the expressions are equivalent? What are the mathematical steps?

Thanks

1

There are 1 best solutions below

0
On

If I understood your question correctly do this...

Use DeMorgan's rule to rewrite:

$A!B = !(!A+B)$

Then write it together

$A!B + !AB = !(!A+B) + !(A+!B) $

use DeMorgan again

$!(!A+B) + !(A+!B) = !(!A+B)(A+!B)$