Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

FULL ADDER:

A full adder is a combinational circuit that forms the arithmetic sum of input; it consists
of three inputs and two outputs. A full adder is useful to add three bits at a time but a half adder
cannot do so. In full adder sum output will be taken from X-OR Gate, carry output will be taken
from OR Gate.
FULL ADDER
TRUTH TABLE:

A B C CARRY SUM

0 0 0 0 0
0 0 1 0 1
0 1 0 0 1
0 1 1 1 0
1 0 0 0 1
1 0 1 1 0
1 1 0 1 0
1 1 1 1 1

K-Map for SUM:

SUM = A’B’C + A’BC’ + ABC’ + ABC

K-Map for CARRY:

CARRY = AB + BC + AC
GARGI MEMORIAL INSTITUTE OF TECHNOLOGY,BARUIPUR

LOGIC DIAGRAM:

FULL ADDER USING TWO HALF ADDER

You might also like