retagged by
4,523 views
23 votes
23 votes
Show with the help of a block diagram how the Boolean function :

$f=AB+BC+CA$

can be realised using only a $4:1$ multiplexer.
retagged by

6 Answers

Best answer
23 votes
23 votes

$AB+BC+CA=AB+A'BC+AB'C$

edited by
17 votes
17 votes
here people directly given answer and not procedure

 

AB+BC+CA

can be written as

AB(C+C') + (A+A')BC + A(B+B')C

Now if we choose A&B as selector then

for first term i.e. for AB(C+C') (C+C') will become 1. And AB indicate input 11 it should be connected to I4

second term gives us ABC and A'BC

third term gives us ABC and AB'C

A'BC means A=0 and B=1 hence C should be connected to I2

AB'C means A=1 and B=0 hence C should be connected to I3

We don't get any term like A'B' which means A=0 and B=0 hence you can connect antthing to I1
10 votes
10 votes

This is Simplified form:

$f=AB+BC+CA$

Actual form:

$f=ABC'+A'BC+AB'C+ABC....................(1)$


Two select lines:

$A\ and\ B$

Let Inputs be:

$I_{0},I_{1},I_{2},I_{3}$

$f=A'B'I_{0}+A'BI_{1}+AB'I_{2}+ABI_{3}....................(2)$


Compare $(1)$ and $(2)$

$I_{0}=0$

$I_{1}=C$

$I_{2}=C$

$I_{3}=1$

9 votes
9 votes

$\text{without using NOT gate}$

Related questions

21 votes
21 votes
5 answers
1
19 votes
19 votes
3 answers
2
makhdoom ghaya asked Nov 23, 2016
6,325 views
Find the minimum product of sums of the following expression$f=ABC + \overline{A}\;\;\overline{B}\;\;\overline{C}$
5 votes
5 votes
1 answer
4
makhdoom ghaya asked Nov 24, 2016
3,108 views
State the Booth's algorithm for multiplication of two numbers. Draw a block diagram for the implementation of the Booth's algorithm for determining the product of two $8$...