Open In App

Axioms of Boolean Algebra

In this article, we are going to discuss Axioms of Boolean Algebra; these axioms/Theorems are important as these will be used in many different topics of Digital Electronics like Sequential Circuit Designing and Combinational Circuit Designing as well. These Axioms are the building blocks of Digital Electronics. So understand these axioms carefully. Now we will look into these Axioms one by one.

Axiom

The sets of logical expressions are known as Axioms or postulates of Boolean Algebra. An axiom is nothing more than the definition of three basic logic operations (AND, OR, and NOT).



Here,

Now, as we have discussed basic Axioms of boolean algebra let’s try to generalize them:



These generalized expressions are very important as they are used to simplify many Boolean Functions and expressions. Minimizing the boolean function is useful in eliminating variables and Gate Level Minimization.  

Comparison of Boolean algebra with Arithmetic algebra:

Postulates/Laws of Boolean Algebra:

1. Commutative Law:

For example:

0 + 1 = 1 and 1 + 0 = 1 (that is A+B = B+A)
0.1 = 0 and 1.0 = 0 (that is A.B = B.A)

2. Associative Law:

For example:

(0 + 1)+1 = 0 + (1+1) =1 (that it (A+B)+C = A+(B+C)
Similarly you can try for (A.B).C = A.(B.C)

3. Distributive Law:

Proof of A +BC = (A+B).(A+C)

Let’s try to simplify RHS of the expression:

(A+B).(A+C) = A.A + A.C + B.A + B.C 
We know that A.A = A  and B.A = A.B so the expression becomes:
A + AC + A.B + B.C

On further Simplifying A.(1+C) + A.B + B.C ,now 1+C = 1 also, A.1 = A, so the expression becomes:

A +  A.B + B.C 
A(1+B) + B.C = A.1 + B.C = A + BC (1+B = 1 and A.1 = 1 )
Hence LHS = RHS  

4. Idempotance Law:

These Laws were discussed earlier 

5. Absorption Law:

Let’s Simplify the LHS of both the expressions to obtain RHS:

A + A.B = A(1+B) = A.1 = A
A.(A+B) = A.A + A.B 
A + A.B = A(1+B) 
A.1 = A 
Article Tags :