-2

I need to create a circuit based on the Boolean function: Y = AB’ + B’C’ + A’BC using only an 8 to 1 multiplexer. Then recreate the circuit using only a 4 to 1 multiplexer and NOT gates.

I figured the truth table to be:

A   B    C    |    Y
0   0    0    |    1
0   0    1    |    0
0   1    0    |    0
0   1    1    |    1
1   0    0    |    1
1   0    1    |    1
1   1    0    |    0
1   1    1    |    0

But I don't understand how to make the circuit using only a 8 to 1 multiplexer.

Oliver Charlesworth
  • 267,707
  • 33
  • 569
  • 680
page4
  • 123
  • 1
  • 4
  • 13

1 Answers1

0

Well, 1- Take an 8 to 1 multiplexer 2- Connect A, B y C to the three input 3- connect Y0, Y3, Y4 and Y5 to Vcc, and the rest to ground.

This logical function is made with just one 3x1 multiplexer and no other component.

To make it with 4x1, yo need to connect, for example A and B to the two control inputs, and the 4 input Y0, Y1, Y2, Y3 to the Vcc, ground, C or not(C) as needed, but yo need at least one not gate.

It seem as there is not a solution without a not gate, because por A=B=C=0->Y=1, and A=B=C=1->Y=0

FOP
  • 962
  • 1
  • 10
  • 21