retagged by
5,818 views
6 votes
6 votes

Minimum number of NAND gates required to implement the following binary equation

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

  1. $4$
  2. $5$
  3. $3$
  4. $6$
retagged by

2 Answers

8 votes
8 votes

Answer is (a) 4

4 votes
4 votes
AND-OR (or SOP)realization is easily convertible into NAND-NAND realization.
NOT-OR is equivalent to NAND.
Y = (A’+B’) (C+D)
Y = (A’+B’)C + (A’+B’)D
Let X= (A’+B’) , Y= C, and Z= D
One NAND gate is needed for implementing X= (A’ + B’).
Y= XY + XZ
Y= [(XY)’ (XZ)’]’
Three NAND gates are needed for [(XY)’ (XZ)’]’.
Total Four NAND gates are required to implement thY = (A’+B’) (C+D).
Answer:

Related questions

3.4k
views
3 answers
8 votes
Satbir asked Jan 13, 2020
3,376 views
If $ABCD$ is a $4$-bit binary number, then what is the code generated by the following circuit?BCD codeGray code$8421$ codeExcess-$3$ code
3.1k
views
3 answers
4 votes
Satbir asked Jan 13, 2020
3,053 views
Consider the following circuitThe function by the network above is$\overline{AB}E+EF+\overline{CD}F$ ... (C+D+\overline{F})$(A+B)\overline{E} +\overline{EF}+CD\overline{F}$
4.2k
views
3 answers
6 votes
Satbir asked Jan 13, 2020
4,182 views
The following circuit compares two $2$-bit binary numbers, $X$ and $Y$ represented by $X_1X_0$ and $Y_1Y_0$ respectively. ($X_0$ and $Y_0$ represent Least Significant Bits)Under what conditions $Z$ will be $1$?$X>Y$X<Y$X=Y$X!=Y$
2.9k
views
2 answers
3 votes
Satbir asked Jan 13, 2020
2,899 views
Following Multiplexer circuit is equivalent toSum equation of full adderCarry equation of full adderBorrow equation for full subtractorDifference equation of a full subtractor