Assignment2 Half and Full Adder
Assignment2 Half and Full Adder
&
FULL ADDER
AIM: 03
APPARATUS: 03
PLATFORM USED: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 03
THEORY:
DEFINITION OF ADDER: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 03
3.1.1: INTRODUCTION: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 04
3.2.1: INTRODUCTION : . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 06
TRUTH TABLE:
HALF ADDER: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 08
FULL ADDER: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 09
RESULT: 10
AIM:
To construct Half and Full Adder circuits using two- i/p
NAND Gates (IC- 7400), and verify their truth tables.
APPARATUS:
1. IC-7400(4 two- i/p NAND Gates)
2. Breadboard
3. 5V supply
4. Connecting wires.
PLATFORM USED:
• Application: Logisim- win-2.7.1
• Operating System: Windows 10
THEORY:
DEFINITION OF AN ADDER
An adder is a digital logic circuit in electronics that
implements addition of numbers. In many computers
and other types of processors, adders are used to calculate
addresses, similar operations and table indices in the ALU
and also in other parts of the processors. These can be built or
many numerical representations like excess-3 or binary coded
decimal.
1. HALF ADDER:
The half adder accepts two binary digits on its inputs and
produce two binary digits outputs a sum bit and a carry bit.
let B C = P
= A P
= A B C
= C(A’B+AB’) + AB(C’+C)
= C(A B) + AB
CIRCUIT DIAGRAM:
TRUTH TABLE:
1. HALF ADDER:
INPUTS OUTPUTS
A B SUM CARRY
0 0 0 0
o 1 1 0
1 0 1 0
1 1 0 1
1. FULL ADDER:
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
RESULT: