student2005
Member level 3
Would someone pls show me how the function F = ~A*B + ~B*C could be realised using a 4-input multiplexer and some logic gates? Many thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Since 2-input multiplexer can do the job, so I think 4-input multiplexer sure will do the job as well, right?lokeyh said:F = ~A*B + ~B*C
If B=0, ~B=1, which means that ~A*B is always 0 and ~B*C depends on C. Hence F will only depend on C.
If B=1, ~B=0, which means that ~B*C is always 0 and ~A*B depends on ~A. Hence F will only depend on ~A.
So B is the select of the multiplexer and ~A and C are the inputs of the multiplexer. You can just use 2-input multiplexer.
F = ~A*B + ~B*C equivalent to
F = ((NOT A) AND B) OR ((NOT B) AND C)