How does this Boolean simplification work?

72 Views Asked by At

The following expression:

$$ABC + BCD + A'D$$

simplifies to:

$$ABC + A'D$$

I just cannot understand how this comes about.

3

There are 3 best solutions below

1
On BEST ANSWER

Treat $BC=X$ as a single variable. Then: $$ AX + XD + A'D = AX + (A+A')XD +A'D = AX + AXD + A'XD + A'D \\ = AX(1+D) + A'D(1+X) = AX + A'D $$

Please tell if you did not understand anything.

2
On

Using a Karnaugh Map will make this a lot easier to understand. If you input your original statement into a 4x4 map, you end up with the following expression:

$$A'C'D + A'CD + ABC$$

simplifies to:

$$A'D + ABC$$

Here is the Wikipedia article on Karnaugh Maps: https://en.wikipedia.org/wiki/Karnaugh_map.

Edit: The Karnaugh Map actually outputs the fully-simplified expression ABC + A'D, I just wanted to show where in the process the BCD term disappeared.

0
On

$ABC + BCD + A'D = ABC + ABCD + A'BCD + A'D = ABC + A'D$