2-Input NAND Gate

A 2-input NAND gate is a logic gate which gives output high when at least one input is low. It gives low output when both the inputs are high.

Truth Table for 2- Input NAND Gate

The following truth table represents the NAND gate.

A

B

A NAND B

0

0

1

0

1

1

1

0

1

1

1

0

Expression for 2-Input NAND Gate

From the above truth table expression for NAND gate is:

A NAND B = A’B’ + A’B + AB’

A NAND B = A’ + B’ = (A.B)’

Logic Diagram of 2- Input NAND Gate

Below is the logic diagram of NAND gate.

NAND Gate Logic Diagram

Implementation of NOR Gate from NAND Gate

Implementation of the NOR gate from the NAND gate is possible because NAND is a Universal gate i.e., it can implement all other gates. The NAND gate gives output low when all the inputs are high whereas the NOR gate gives output high when all inputs are low. In this article, we will implement the NOR gate using the NAND gate.

Table of Content

  • NOR Gate
  • NAND Gate
  • Implementation of NOR Gate from NAND Gate
  • Conclusion

Similar Reads

What is NOR Gate?

NOR gate is a logic gate that gives output 1 when all the inputs are 0. In other words, the output is high when all inputs are low. NOR gate is a Universal gate. It is the complement of the OR gate....

2-Input NOR Gate

The NOR gate with 2 inputs is called a 2-input NOR gate. It gives the output high when both the inputs are low....

n-Input NOR Gate

The NOR gate with n-inputs is called as n-input NOR gate. It gives the output high when all the inputs are low otherwise output is low. In other words, the output is low when any one of the inputs among n inputs is high....

What is NAND Gate?

NAND gate is a logic gate which gives output 0 when all the inputs are 1. In other words, the output is low when all inputs are high. It gives output high if at least one input is low. NAND gate is a Universal gate. It is the complement of AND gate....

2-Input NAND Gate

A 2-input NAND gate is a logic gate which gives output high when at least one input is low. It gives low output when both the inputs are high....

n-Input NAND Gate

The NAND gate with n inputs is called n-input NAND gate. In this logic gate the output is low when all the inputs are high otherwise the output is high....

Implementation of NOR Gate from NAND Gate

Following is the implementation of NOR gate from NAND gate. First, we produce complements of inputs and further implement NOR logic....

Conclusion

From the above discussion we can conclude that to implement NOR gate from NAND gate we require 4 NAND gates. First two gates give us the complement of the inputs and then, we connect two more NAND gates to get NOR gate. We also use DE Morgan’s law to convert and of individual complements to whole complement of OR of inputs....

FAQs on Implementation of NOR Gate from NAND Gate

What is NAND Gate?...