Experiment No 2
Experiment No 2
Objective: Implement Half Adder and Full adder using basic Logic Gates
Theory: A logic circuit for the addition of two one-bit numbers is referred to as Half Adder.
It has two inputs X and Y and two outputs, one for the sum and one for carry.
To construct a half adder, we require IC 7486 for X-OR operation and IC 7408 for AND
operation. There is no care for the previous carry.
TRUTH TABLE:
INPUT OUTPUT
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
INPUT OUTPUT
A B C SUM CARRY
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
Procedure: -