edited by
574 views
0 votes
0 votes

how to differentiate between these two MUX output?

HOW to decide which of the A, B ,C will be MSB and LSB?

getting confused.!!!

edited by

1 Answer

Best answer
1 votes
1 votes

Output at MUX is valid if E = 0 only. then

Output of a MUX = S'1.S'0.I0 + S'1.S0.I1 + S1.S'0.I2 + S1.S0.I3

 = B'.A'.I0 + B'.A.I1 + B.A'.I2 + B.A.I3

= B'.A'.C + B'.A.C' + B.A'.1 + B.A.C'

= B'.A'.C + B'.A.C' + B.A'.( C + C' ) + B.A.C'

= B'.A'.C + B'.A.C' + B.A'.C + B.A'.C' + B.A.C'

 

if the Function is F(A,B,C), then

F(A,B,C) = B'.A'.C + B'.A.C' + B.A'.C + B.A'.C' + B.A.C'

F(A,B,C) = A'.B'.C + A.B'.C' + A'.B.C + A'.B.C' + A.B.C' = ∑m(001,100,011,010,110) = ∑m(1,4,3,2,6) = ∑m(1,2,3,4,6).

 

if the Function is F(C,B,A), then

F(A,B,C) = B'.A'.C + B'.A.C' + B.A'.C + B.A'.C' + B.A.C'

F(A,B,C) = C.B'.A' + C'.B'.A + C.B.A' + C'.B.A' + C'.B.A = ∑m(100,001,110,010,011) = ∑m(4,1,6,2,3) = ∑m(1,2,3,4,6).

 

in this case, F(A,B,C) = F(C,B,A), but in general may those are not equivalent.

ex :- if the function leads to F = ABC' + A B C

then F(A,B,C) = ∑m(110,111) = ∑m(4,7)

but F(C,B,A) = ∑m(011,111) = ∑m(3,7).

selected by

Related questions

0 votes
0 votes
1 answer
1
1 votes
1 votes
0 answers
2
1 votes
1 votes
1 answer
3
muthu kumar asked Jan 7, 2019
652 views
1 votes
1 votes
1 answer
4