LAB 2
LAB 2
Jawad Ahmed
Syndicate A
—
533047
BOOLEAN ALGEBRA RULES AND LOGIC CIRCUITS
Boolean Laws
Boolean Algebra follows specific fundamental laws that help in circuit simplification and logic design. These
laws are as follows:
1. Commutative Law
The Commutative Law states that the order of operands does not affect the result of an operation.
A+B=B+A
A.B=B.A
2. Associative Law
This law states that changing the grouping of operands does not affect the result.
For OR Operation:
A + (B+C) = (A+B) + C
A ⋅ (B⋅C) = (A⋅B) ⋅ C
3. Distributive Law
JAWAD AHMED
4. AND Law
A⋅1=A
Identity Law:
A⋅0=0
5. OR Law
Identity Law:
A+0=A
A+ 1=1
6. Inversion Law
Double Negation:
(A`)` = A
7. Absorption Law
A ⋅ (A+B) = A
A + A⋅B = A
Each Boolean law has a corresponding circuit that visually represents its working using logic gates such as
AND, OR, and NOT.
Tasks
1. Absorption Law:
A | B | A.B | A + A.B
----------------------
0|0| 0 | 0
0|1 | 0 | 0
1 |0| 0 | 1
1 |1 | 1 | 1
JAWAD AHMED
Conclusion
Boolean algebra plays a crucial role in digital circuit design and logic simplification. Understanding
these laws helps in constructing optimized and efficient digital systems. The truth tables and formulas discussed
above provide a foundational understanding of Boolean logic operations.
JAWAD AHMED