- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Design Full Adder Using Half Adder
In data processing, addition of operands is one of the most basic operations performed by different electronic devices like computers, calculators, etc. The electronic circuit that is designed to perform the addition of two or more numbers, more specifically binary numbers, is known as adder. As we know, the logic circuits use binary number system to perform the operations, hence the adder is also referred to as a binary adder.
Depending on the number of binary digits that the adder circuit can add, adders (or binary adders) are of two types:
Half Adder
Full Adder
In this article, we will discuss the implementation of full adder using half adder. But before that let’s have a look into the basics of half adder and full adder.
What is a Half Adder?
Half adder is a combinational logic circuit that is designed to add two binary digits. The half adder provides the output along with a carry (if any). The half adder circuit can be designed by connecting an XOR gate and one AND gate. It has two input terminals and two output terminals for sum (S) and carry (C). The block diagram and circuit diagram of a half adder are shown in Figure-1.

In the half adder, the output of the XOR gate is the sum of two bits and the output of the AND gate is the carry bit. However, in the half-adder circuit, the carry obtained in one addition will not be forwarded in the next addition.
The output equation of the half adder are,
$$\mathrm{Sum,S=A\bigoplus B}$$
$$\mathrm{Carry,𝐶=A\cdot B}$$
What is a Full Adder?
Full adder is also a combinational logic circuit that can add two binary digits (bits) and a carry bit, and produces a sum bit and a carry bit as output.
In other words, a combinational circuit which is designed to add three binary digits and produces two outputs (sum and carry) is known as a full adder. Thus, a full adder circuit adds three binary digits, where two are the inputs and one is the carry forwarded from the previous addition. The block diagram and circuit diagram of the full adder are shown in Figure-2.

It is clear that the logic circuit of a full adder consists of one XOR gate, three AND gates and one OR gate, which are connected together as shown in Figure-2. Here, A and B are the input bits, $C_{in}$ is the carry from previous addition, S is the sum bit, and $C_{out}$ is the output carry bit.
The output equations of the full adder are,
$$\mathrm{Sum,S=A\bigoplus B\bigoplus C_{in}}$$
$$\mathrm{Carry,C_{out}=Ab+AC_{in}+BC_{in}}$$
Now, let us discuss the realization of the full adder using half adders
Implementation of Full Adder using Half Adder
The logic diagram of the full adder using two half adders is shown in Figure-3:

The block diagram of a full adder using two half adders is shown in Figure-4.

From the logic diagram of the full adder using half adders, it is clear that we require two XOR gates, two AND gates and one OR gate for the implementation of a full adder circuit using half-adders.
However, the implementation of full adder using half adder has a major disadvantage that is the increased propagation delay. That means, the input bits must propagate through several gates in succession that increases the total propagation delay of the full adder circuit.
- Related Articles
- Difference between Half Adder and Full Adder
- Half Adder in Digital Electronics
- Half Adder with NAND Gates
- Full Adder in Digital Electronics
- Full Adder with NAND Gates
- What is Binary Adder?
- What is BCD Adder in Computer Architecture?
- What is Binary Adder-Subtractor in Computer Architecture?
- Block Diagram of BCD Adder in Computer Architecture?
- Realization of a Full Subtractor using Two Half Subtractors
- What is Half Duplex mode? Differentiate between half duplex and full duplex?
- Difference between Half Wave and Full Wave Rectifier
- What is Full Duplex mode? Differentiate between simplex, half duplex and full duplex?
- Difference between Simplex, Half duplex and Full Duplex Transmission Modes
- A railway half ticket costs half the full fare and the reservation charge is the same on half ticket as on full ticket. One reserved first class ticket from Mumbai to Ahmedabad costs Rs. 216 and one full and one half reserved first class tickets cost Rs. 327. What is the basic first class full fare and what is the reservation charge?
