Implementation of Full Adder using NOR Gates (original) (raw)

Last Updated : 23 Jul, 2025

In Digital Logic Circuit, Full Adder is a Digital Logic Circuit that can add three inputs and give two outputs. The three inputs A, B, and input carry as Cin. Cout is represented as output carry and Sum is represented as output. We can say Cout is called the majority 1’s detector, when more than one input is high (logic 1) then its output will be high.

In Digital Logic Circuits, Full Adders are implemented using digital logic gates such as OR gate, AND gate, NOT gate, NAND gates, NOR gates, etc. In this article, we will explore Full Adders, and NOR Gates and execute the ImplementationofFull Adders using NOR Gates.

Table of Content

**What is a Full Adder?

Full Adder is a Digital Logic circuit that can add three inputs and give two outputs i.e. three inputs such as A, B, and input carry as Cin, and gives a sum output and carry output i.e. two outputs. A Full Adder Circuit performs as the brain of most Digital Logic Circuits that execute addition or subtraction. Full adders are used in multiplexers and Demultiplexers to choose and course information.

A Full Adder requires the use of nine NOR gates. The Arithmetic Logic Unit, ALU uses Full Adders. In a computer, Full Adders are utilized by the ALU to produce memory addresses and relocate the Program Counter to the next instruction.

Now, Here we will understand Full Adder by Block Diagram of Full Adder where we will discuss and explain it by using :

Block Diagram of Full Adder

The Block Diagram and Truth Table of Full Adder is shown below :

Full Adder

Full Adder

**Logical Expression for Full Adder

Given below is the Expression for Full Adder which includes Sum and Carry :

Sum=A ⊕ B ⊕ Cin

Cout= AB + ACin + BCin

Where, A, B, Cin are the Inputs of the Full Adder

**Applications of Full Adder

What is a NOR Gate?

In Digital Electronics, Logic gates are one of the most important component. It basically works on the theory of boolean function. In Digital Electronics, There are various NOR Gates, which is also comes under Universal Gate because it can be utilized to execute other basic logic gates like AND, OR and NOT gate by connecting NOR gates with each other in particular configurations.

NOR gate is a digital logic gate that executes NOR operation between two or more binary inputs and output binary signal. NOR Gate is a combination of OR gate and NOT gate.

It has multiple inputs that are executed to give the output complemented to OR Gate So, It has a Universal gate property. So that it is operated as the complement of OR gate that can be used in memory circuits.

When both the Inputs are connected to the gate are Low (logic 0) then it results as High (logic 1)

And, if one or both inputs is High (logic1) then it results as Low (logic 0)

2 Input NOR Gate

NOR Gate

**Logical expression of a NOR Gate

Boolean expression of a NOR Gate is mentioned below

In the expression, Two inputs are represented as A and B and the Output is O, then the expression is –

**O = (A+B)’

Applications of NOR Gate

**Implementation of Full Adder using NOR Gates

Implementation of Full Adder using NOR Gates is realization of Full Adder by using minimum nine NOR Gates during which we will have 2 outputs at the end namely Cout and Sum.

Given Below is the Circuit For Implementation of Full Adder using NOR Gates

Full Adder using NOR Gates

Implementation of Full Adder using NOR Gates

**Logical Expression for Full Adder using NOR Gate

Now, we are going to find the Logical expression of Full Adder using NOR Gate.

We know that,

Logical expression of XNOR gate is

Y=A⊙B=AB+\overline{A}.\overline{B}

where, A and B are inputs and Y is the output

**Steps for Implementation of Full Adder using NOR Gates

Now, We are implementing Full Adder using NOR Gates,

Conclusion

Here, we saw how we can use a universal gate called the 'NOR' gate to implement the Full Adder. This is important as it helps us analyze the working behind universal gates and we can understand how we can implement Full Adder using universal gates. The implementation of a full adder using NOR gates can be achieved by combining multiple NOR gates based on the logical expressions for the Sum and Cout outputs.

NOR gates are sometimes considered more intuitive and easier to use in certain logic functions. For example, NOR gates are directly associated with the OR function, and their use can simplify the design of circuits where OR logic is predominant. NOR gates might have a shorter propagation delay NOR gates may offer better timing characteristics.

Depending on the design requirements and specific configurations, NOR gates may lead to circuits with a lower transistor count. This reduction in transistor count can have advantages in terms of power consumption and area efficiency. It is instructed that readers go through all other realizations to understand the basic functioning behind other important gates. FAQ's have been responded that enfold some fundamental opinions. Readers can also refer to these questions as well.