edited by
9,458 views
19 votes
19 votes

A Boolean digital circuit is composed using two $4$-input multiplexers $\text{(M1 and M2)}$ and one $2$-input multiplexer $\text{(M3)}$ as shown in the figure. $\text{X0-X7}$ are the inputs of the multiplexers $\text{M1 and M2}$ and could be connected to either $0$ or $1.$ The select lines of the multiplexers are connected to Boolean variables $\text{A, B and C}$ as shown.

Which one of the following set of values of $\text{(X0, X1, X2, X3, X4, X5, X6, X7)}$ will realise the Boolean function $\overline{\mathrm{A}}+\overline{\mathrm{A}} \cdot \overline{\mathrm{C}}+\mathrm{A} \cdot \overline{\mathrm{B}} \cdot \mathrm{C}?$ 

  1. $(1,1,0,0,1,1,1,0)$
  2. $(1,1,0,0,1,1,0,1)$
  3. $(1,1,0,1,1,1,0,0)$
  4. $(0,0,1,1,0,1,1,1)$
edited by

3 Answers

18 votes
18 votes
$f= \overline{A} + \overline{A} \ \overline{C} + A \overline{B} C$

Since, final output is given by a $2 \times 1$ MUX i.e. $M_3$, so we have to write $f$ as $f= \overline{B} (.) + B (.)$

$f=\overline{A} (1+\overline{C}) + A \overline{B}C$

$f= \overline{A} + A \overline{B}C$

$f= \overline{A}(B + \overline{B})(C + \overline{C}) + A \overline{B}C$

$f = \overline{A}BC + \overline{A}B\overline{C} + \overline{A} \ \overline{B}C + \overline{A} \ \overline{B} \ \overline{C} + \overline{B}AC$

$f= \overline{B}(\overline{A}C + \overline{A} \ \overline{C} + AC) + B (\overline{A}C + \overline{A} \ \overline{C})$

Now, our job is completed to write $f$ as $f= \overline{B} (.) + B (.)$

Now, for $(\overline{A}C + \overline{A} \ \overline{C} + AC)$ we have to go upper left side MUX i.e. $M_1$ and we get:

$1)$ $\overline{A}C$ i.e. $\overline{S_1}S_0$ i.e. $X_1=1$

$2)$ $\overline{A} \ \overline{C}$ i.e. $\overline{S_1} \ \overline{S_0}$ i.e. $X_0=1$

$3)$ $AC$ i.e. $S_1S_0$ i.e. $X_3=1$

Now, from left below MUX i.e. $M_2$, we get:

$4)$ $\overline{A} C$ i.e. $\overline{S_1} S_0$ i.e. $X_5=1$

$5)$ $\overline{A} \ \overline{C}$ i.e. $\overline{S_1} \ \overline{S_0}$ i.e. $X_4=1$

Hence, $X_0=X_1=X_3=X_4=X_5=1$ and $X_2=X_6=X_7=0$

So, order is: $\textbf{11011100}$

$\textbf{Therefore, (C)}$
9 votes
9 votes

As per arrangement of MUX , choose  BAC ,  B:MSB , C:LSB

  B A C  
x0 0 0 0 1 → Due to A’ , 1 → Due to A’C’
x1 0 0 1 1 → Due to A’
x2 0 1 0 0
x3 0 1 1 1 → Due to AB’C
x4 1 0 0 1 → Due to A’ , 1 → Due to A’C’
x5 1 0 1 1 → Due to A’
x6 1 1 0 0
x7 1 1 1 0

 

 x0..x7  = 11011100

5 votes
5 votes

First of all we can see the resultant circuit is nothing but an 8x1 Mux(with inputs as: X0,X1,X2,X3,X4,X5,X6,X7 that is implemented here using two 4x1 Mux(Level-1) + one 2x1 Mux(Level-2).

Now as the select line of Level-2 Mux is B hence we consider B as MSB and select lines of Level-1 Mux are A(connected to S1) and C (connected to S0) so C is LSB.

so function that circuit realise is F(B,A,C) =$\bar{A}+\bar{A}\bar{C}+\bar{B}AC$ which can be further written as 

F(B,A,C) =$(\bar{A}+\bar{A}\bar{C})+\bar{B}AC$   =   $(\bar{A}+\bar{B}AC)$   (used distributive law here)

now find all minterm expression for it by expanding it, 

F(B,A,C) =$\bar{B}\bar{A}\bar{C}+\bar{B}\bar{A}C+B\bar{A}\bar{C}+B\bar{A}C+\bar{B}AC$

so its minterms are 

F(B,A,C)= $\sum$m(0,1,3,4,5) , now to get these minterms, the inputs X0,X1,X3,X4,X5 must be 1 and remaining inputs i.e X2,X6,X7 must be 0.

hence answer is option C.

 

Answer:

Related questions

8 votes
8 votes
3 answers
1
admin asked Feb 15, 2023
10,706 views
The output of a $2$-input multiplexer is connected back to one of its inputs as shown in the figure.Match the functional equivalence of this circuit to one of the followi...
4 votes
4 votes
1 answer
3