Open In App

Implementation of NOR Gate from NAND Gate

Last Updated : 27 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

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.

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.

The truth table for 2-Input NOR Gate

The following truth table represents the NOR gate.

A

B

A NOR B

0

0

1

0

1

0

1

0

0

1

1

0

Expression for 2-Input NOR Gate

From the above truth table, expression for NOR gate is:

A NOR B = A’B’ = (A + B)’

Logic Diagram of 2- Input NOR Gate

Below is the logic diagram for NOR gate.

Logic Diagram for NOR Gate

Logic Diagram for NOR Gate

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.

Expression for n-Input NOR Gate

If the inputs are A1, A2, …, An then,

A1 NOR A2 NOR …NOR An = (A1+ A2+ … + An)’

Logic Diagram for n-Input NOR Gate

Below is the logic diagram for n-input NOR gate.

n-Input NOR Gate

n-Input NOR Gate

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.

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

NAND Gate Logic Diagram

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.

Expression for n-Input NAND Gate

If the inputs are A1, A2, …, An then,

A1 NAND A2 NAND …NAND An = (A1. A2. … An)’

Logic Diagram for n-Input NAND Gate

Below is the logic diagram for n-input NAND gate.

n-Input NAND

n-Input NAND

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.

Logic Diagram for Implementation of NOR Gate from NAND Gate

Below is the logic diagram for the implementation of NOR gate from NAND gate.

Implementation of NOR Gate from NAND Gate

Implementation of NOR Gate from NAND Gate

  • To Implement NOR Gate as a NAND Gate,We will Take two NAND gate and connect its two terminal together which will act as Inverter.
  • Input A and B are Fed to the NAND Gate having both Input terminal Together.So, the Output of Input A NAND gate Will give A’ ,Similarly B will give B’.
  • Then Both this Output is Fed to the NAND gate which will give Output as (A’B’)’.
  • Finally,a NAND gate is connected to this Output Having Both the Input Terminals Together, which will give output as A’.B’=(A+B)’ which is the Output of NOR gate.

So,This is How the NAND gate can be Implemented as NOR gate.

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?

The NAND gate produces the high output when at least one of the inputs is low.

What are Universal Gates?

The logic gates which can implement all other gate and logic is called Universal gate. There are two universal gates: NOR gate and NAND gate.

How Many Gates are Required to Implement NOR Gate from NAND Gate?

To implement NOR gate from NAND gate we require 4 NAND gates.

What is the Expression for the NOR Gate?

The expression for the NOR gate is:

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



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads