retagged by
9,610 views
6 votes
6 votes

The truth table for the combinational circuit is shown below:

What is the minimum number of two input NAND gates required to realize this logic circuit?

retagged by

3 Answers

Best answer
6 votes
6 votes
here we realise K-map then we get Y= A' B'+B'C'+ A'C'

  so its AND-OR realization so  three NAND gate use for A', B',C' and  4 NAND gate for AND-OR so total 7 NAND gate is required.
selected by
3 votes
3 votes
By simplifying the expression for Y we get

Y = A' (B' + C')

Implementing (B' + C') or (BC)' will require 1 NAND gate. Implementing A' will require another NAND gate. Combining the output of the previous two, we will get (A' (BC)')' = A + BC. Again feeding it into a NAND gate will give (A + BC)' = A' + (B' + C') = Y.

Hence, 4 NAND gates required in total.
2 votes
2 votes
7 NAND gates.

Expression after minimization

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

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

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

Now, for the SOP expression, 3 NAND gates.

Additionally, 1 NAND to realise (BC)'

 1 NAND to realise to C'

 1 NAND to realise to B'

 1 NAND to realise to A'

Related questions

0 votes
0 votes
2 answers
1
1 votes
1 votes
2 answers
2
sh!va asked Jan 26, 2017
8,477 views
F= PQ+ QR+ RS+ST.i) What is the minimum number of NAND gates required to implement F?ii) What is the minimum number of NOR gates required to implement F?
14 votes
14 votes
3 answers
4
Nirmal Gaur asked May 4, 2017
34,079 views
Is there any systematic approach to find the minimum number of two input NAND gates and two input NOR gates to be used to impelement a binary expression?If there then ple...