0

The following expression:

$$ABC + BCD + A'D$$

simplifies to:

$$ABC + A'D$$

I just cannot understand how this comes about.

Glorfindel
  • 3,955
chomprrr
  • 103

3 Answers3

1

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.

1

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.

1

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

Bram28
  • 100,612
  • 6
  • 70
  • 118