NOR Gate (original) (raw)

Last Updated : 22 Nov, 2025

NOR gate performs NOR(NOT OR) operation between two or more binary inputs and gives output binary signal. This is a combination of OR gate and NOT gate. It gives the output high(1) only when all of its inputs are low(0). In simple words we can say that NOR gate is the opposite (inverted) of OR Gate. It is also known as the Universal Gate because it can be used to implement other basic logic gates like AND, OR, and NOT gate by connecting NOR gates in specific configurations.

The Boolean expression for the NOR gate is the complement of logical multiplication of inputs which is given(denoted) by plus sign as

**O = (A + B)'

Below is the symbolic representation of NOR Gate.

NOR GATE Symbol

Operation of NOR Gate

According to its behavior :

**Returns 1, if all the inputs are 0

**Returns 0, if any of the input is 1, or all of the inputs are 1.

Types of NOR Gate

There are basically three types of NOR gate, based on the number of inputs:

2 -Input NOR Gate

It is the simple form of NOR gate. In this type of NOR gate, there are only two input values and one output values. There are total of 22=4 combinations of inputs possible. The logic design and Truth table are mentioned below.

NOR Gate

3-Input NOR Gate

Unlike the 2 input NOR gate has two inputs, the 3-inputs NOR gate has total of three inputs. The NOR gate can be joined(cascaded) together to form individual inputs of any number. There are total of 23=8 combinations of inputs possible. The Boolean expression of NOR gate is defined as binary operation addition(+).

3-Input-NOR-Gate

Multi Input NOR Gate

We can form NOR gate with any number of inputs i.e., n inputs. The output is high(1) only when all the inputs are false (0). If any one or more of the inputs are high(1), the output will be low(0). There are total of 2n combinations of inputs possible. When there is NOR gate with multiple inputs but you don't need to use all of them (example, you have a 5-input NOR gate, but only need 4 inputs) , then the unused input should be handled properly to avoid affecting the output.

4-Input-Nor-Gate

NOR Gate in Terms of Transistor

NOR gate can be constructed using transistors, which are the key blocks of digital electronics. In this transistors acts as a small switches in a circuit, turning on or off based on the signal received from the input. In NOR gate, transistors is used to make sure that the output is high(1) only when all of its inputs are low(0). NOR gate can be implemented by using transistor in various ways, but two transistor method is the most common method.

nor-gate-in-terms-of-Transistor

Working of NOR Gate in Terms of Transistor

In a transistor-based NOR gate, two or more NPN transistors are connected side by side(in parallel)****.** The Key concept here is that for the output to be high (1), all the transistors must be off. This means that each input must provide the required signal to turn off its corresponding transistor.

  1. The positive voltage supply (Vcc) is connected to a pull-up resistor, which is connected to the output.
  2. The collectors of both transistors (T1 and T2) are connected to the same point, which is the output.
  3. The emitters of both transistors are connected to ground (0V).
  4. The inputs, A and B, are connected to thebases of T1 and T2, respectively.

Applications of NOR Gate

Advantages of NOR Gate

Disadvantages of NOR Gate