3

Could someone please help me understand what the boolean equation performed by this circuit would be?

image

petrov
  • 1,085
  • 3
  • 12
  • 13

1 Answers1

3

Label the output of the first mux X.

Then, create a truth table for X, then Y:

C D X A Y
---------
0 0 1 0 1
0 1 0 0 0
1 0 0 0 0
1 1 1 0 1
0 0 1 1 1
0 1 0 1 1
1 0 0 1 1
1 1 1 1 1

From inspection of the truth table:

Y = A + CD + C'D'
kjhughes
  • 106,133
  • 27
  • 181
  • 240