Following are the interactive versions of the circuits used in the document:
Arithmetic circuits are used to perform several different arithmetic operations using a single composite circuit. Half adder, subtractors etc., are examples of arithmetic circuits.
Half Adder
Half adder is an arithmetic circuit that performs arithmetic addition of two binary digits. Following is the details of a half adder.
Block diagram

Truth table
Circuit diagram

Working
-
It has two inputs A and B, and two outputs sum S, and carry C.
-
The sum is derived with XOR
operation on the inputs:
S=A⊕B=AˉB+ABˉ
-
The carry is generated by AND
operation on the inputs:
C=A.B
Full Adder
A full adder is a combinational circuit that performs arithmetic sum of three input bits, {A,B,C} and produces a sum S and carry C.
Block diagram

Truth table
A | B | C | S | C |
---|
0 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 1 | 0 |
0 | 1 | 0 | 1 | 0 |
0 | 1 | 1 | 0 | 1 |
1 | 0 | 0 | 1 | 0 |
1 | 0 | 1 | 0 | 1 |
1 | 1 | 0 | 0 | 1 |
1 | 1 | 1 | 1 | 1 |
Circuit diagram

Working
-
It consists of three inputs denoted by A (augend bit), and B (addend bit), and third input C, which represents the carry from the previous lower significant bit.
-
It produces two outputs sum S, and carry C.
-
From the above truth table using S.O.P. (sum of products), the formula of sum is derived as follows:
S=AˉBˉC+AˉBCˉ+ABˉCˉ+ABC=Aˉ(BˉC+BCˉ)+A(BˉCˉ+BC)=Aˉ(B⊕C)+A(B⊕C)=A⊕B⊕C
- From the above truth table using S.O.P. the formula of carry is:
S=AˉBC+ABˉC+ABCˉ+ABC=AˉBC+ABˉC+AB(Cˉ+C)=AˉBC+ABˉC+AB=B(AˉC+A)+ABˉC=BC+A(B+BˉC)=AB+BC+AC[∵xˉ+x=1][∵xˉy+x=y+x]
4-bit Parallel Adder
This circuit is capable of adding two 4-bit binary numbers resulting in four bit sum and a carry.
Construction
Binary bits:

Design:

- Two 4-bit binary numbers are in storage A and B.
- Four full adders are used.
- The Cin input is always 0.
- Ai and Bi and carry from the significant bit is fed as input to produce sum Si and the carry generated is forwarded to the next full adder.
- Cout is the final carry
Working
- In least significant bit, A0, B0, and Cin (which is 0) are added to produce sum S0 and carry C0.
- Similarly all the other inputs are added in respective full adders.
- If no carry is generated 0 is forwarded.
- In case a fifth bit is generated in the final sum it is produced through Cout.
4-bit Combined Paraller Adder/Subtractor
The 4-bit parallel adder/subtractor circuit is capable of performing both addition and subtraction on two binary numbers.
Construction

- Two 4-bit numbers are stored in storage A and B.
- Ai bits are fed into the full adders directly.
- The Bi inputs are fed via
XOR
gates.
- The other input of
XOR
gate are kept common and connected to the input of first full adder known as mode.
Working
When mode is 0, we can understand the working if we concentrate on the first full adder, the inputs are:
= A0+(B0⊕0)+0A0+B0[∵B0⊕0=B0]
Therefore, the circuit acts as an adder circuit.
But when mode is 1, the inputs are:
= = = = A0+(B0⊕1)A0+B0A0+(2’s compliment of B0)A0+(−B0)A0−B0[∵B0⊕1=B0]
Therefore, the circuit acts as a subtractor.
Half Subtractor
A half subtractor is an arithmatic circuit used to subtract two binary digits. It takes in two inputs A and B, and returns two outputs: difference (D), and borrow (B0).
Block diagram

Truth table
A | B | C | B0 |
---|
0 | 0 | 0 | 0 |
0 | 1 | 1 | 1 |
1 | 0 | 1 | 0 |
1 | 1 | 0 | 0 |
Circuit diagram

Construction
- Two inputs A and B are passed directly into the
XOR
gate which gives the difference D.
- The inputs from A is first passed into the
NOT
gate then along with B is passed into the AND
gate giving the borrow B0.
Working
-
The formula for the difference can be brought out using the truth table:
D=AˉB+ABˉ=A⊕B
The above is a formula of a XOR
gate.
-
The formula for borrow can be brought out using truth table as:
B0=AˉB
Full Subtractor
A full subtractor accepts three input lines of binary digits and returns their difference and respective borrows.
Block diagram

Truth table
A | B | C | D | B0 |
---|
0 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 1 | 1 |
0 | 1 | 0 | 1 | 1 |
0 | 1 | 1 | 0 | 1 |
1 | 0 | 0 | 1 | 0 |
1 | 0 | 1 | 0 | 0 |
1 | 1 | 0 | 0 | 0 |
1 | 1 | 1 | 1 | 1 |
Circuit diagram

Construction
- There are three input lines, which are passed directly into the
XOR
gate, which gives us the difference D.
- And two consequetive lines from three input with each combination with a
NOT
gate through A, and noral lines through others are passed into respective AND
gates to form, AˉB, AˉC, and BC combinations.
- Finally the three combinations are passed into an
OR
gate to get the final borrow B0
Working
-
Using S.O.P., we can find the formula for difference from the truth table as:
D=AˉBˉC+AˉBCˉ+ABˉCˉ+ABC=Aˉ(BˉC+BCˉ)+A(BˉCˉ+BC)=Aˉ(B⊕C)+A(B⊕C)=A⊕B⊕C[∵xˉy+xyˉ=x⊕y and, xˉyˉ+xy=x⊕y][∵xˉy+xyˉ=x⊕y]
Therefore, the result is that of a XOR
gate
-
Using K-map, the formula for borrow can be brought out as:

From the blue region, we have AˉC as common, from yellow region, we have AˉB as common, and from the green region we have, BC common.
B0=AˉB+BC+AˉC