Boolean Algebra

Team Maths - Examples.com
Created by: Team Maths - Examples.com, Last Updated: June 5, 2024

Boolean Algebra

Boolean algebra is a branch of mathematics that deals with variables that have two distinct values: true (1) and false (0). Developed by George Boole in the mid-19th century, it forms the foundation of digital logic and computer science.

What Is Boolean Algebra?

Boolean algebra is a branch of mathematics that deals with binary variables and logical operations. It uses true/false values (1/0) and Arithmetic operations like AND, OR, and NOT to manipulate logical expressions, forming the foundation for digital circuit design and computer science applications.

Boolean Algebra Operations

Boolean-Algebra-Operations-2

Boolean algebra consists of several fundamental operations that are used to manipulate and simplify logical expressions. The main types of Boolean algebra operations include:

  1. AND Operation
  2. OR Operation
  3. NOT Operation
  4. NAND Operation
  5. NOR Operation
  6. XOR Operation
  7. XNOR Operation
OperationSymbolOperatorPrecedence
AND Operation∧ or ·A AND B2
OR Operation∨ or +A OR B3
NOT Operation¬ or ‘NOT A1
NAND OperationA NAND B2
NOR OperationA NOR B2
XOR OperationA XOR B3
XNOR OperationA XNOR B3

Boolean Algebra Truth Table

ABA ∧ BA ∨ B¬A¬B¬(A ∧ B)¬(A ∨ B)A ⊕ B¬(A ⊕ B)
0000111101
0101101010
1001011010
1111000001
ABA AND BA OR BNOT AA NAND BA NOR BA XOR BA XNOR B
FalseFalseFalseFalseTrueTrueTrueFalseTrue
FalseTrueFalseTrueTrueTrueFalseTrueFalse
TrueFalseFalseTrueFalseTrueFalseTrueFalse
TrueTrueTrueTrueFalseFalseFalseFalseTrue

This table presents the results of the primary Boolean algebra operations for all possible combinations of Boolean values (True and False) of variables A and B.

Laws of Boolean Algebra

1. Identity Law

A + 0 = A: Adding 0 to a variable does not change its value.

A · 1 = A: Multiplying a variable by 1 does not change its value.

2. Null Law

A + 1 = 1: Adding 1 to a variable always results in 1.

A · 0 = 0: Multiplying a variable by 0 always results in 0.

3. Idempotent Law

A + A = A: Adding a variable to itself does not change its value.

A · A = A: Multiplying a variable by itself does not change its value.

4. Complement Law

A + ¬A = 1: A variable OR with its complement is always 1.

A · ¬A = 0: A variable ANDed with its complement is always 0.

5. Commutative Law

A + B = B + A: The order of variables in an OR operation does not matter.

A · B = B · A: The order of variables in an AND operation does not matter.

6. Associative Law

A + (B + C) = (A + B) + C: Grouping of variables in an OR operation does not affect the result.

A · (B · C) = (A · B) · C: Grouping of variables in an AND operation does not affect the result.

7. Distributive Law

A · (B + C) = (A · B) + (A · C): AND operation distributes over OR.

A + (B · C) = (A + B) · (A + C): OR operation distributes over AND.

8. Absorption Law

A + (A · B) = A: A variable OR with its ANDed result with another variable is always equal to the variable.

A · (A + B) = A: A variable ANDed with its OR result with another variable is always equal to the variable.

Boolean Algebra Theorems

Boolean algebra consists of several key theorems that are essential for simplifying and manipulating logical expressions. Here are the main theorems along with explanations:

1. De Morgan’s Theorems

Theorem 1: A + B‾ = A‾ ⋅ B‾

This theorem states that the complement of the OR of two variables is equal to the AND of their complements.

Theorem 2: A ⋅ B‾ = A‾ + B‾

This theorem states that the complement of the AND of two variables is equal to the OR of their complements.

2. Duality Theorem

Every Boolean expression remains valid if the operators and identity elements are interchanged. Specifically, AND is swapped with OR, and 0 is swapped with 1.

3. Absorption Theorem

Theorem 1: A + (A⋅B) = A

This theorem states that a variable OR with its ANDed result with another variable is always equal to the variable itself.

Theorem 2: A ⋅ (A+B) = A

This theorem states that a variable ANDed with its OR result with another variable is always equal to the variable itself.

4. Involution Theorem

Theorem: A‾ = A

This theorem states that the complement of the complement of a variable is the variable itself.

5. Redundancy Theorem

Theorem 1: A + A‾ ⋅ B = A + B

This theorem states that a variable OR with the AND of its complement and another variable is equal to the variable OR with the other variable.

Theorem 2: A ⋅ (A‾+B) = A⋅B

This theorem states that a variable AND with the OR of its complement and another variable is equal to the variable ANDed with the other variable.

6. Consensus Theorem

Theorem: (A⋅B) + (A‾⋅C) + (B⋅C) = (A⋅B) + (A‾⋅C)

This theorem states that the term B⋅C is redundant and can be eliminated.

Solved Examples

Simplify: A + A⋅B
Solution:
Using the Absorption Law:
A + A⋅B = A
Simplify: A⋅(A+B)
Solution:
Using the Absorption Law:
A⋅(A+B) = A
Simplify: (A+B)⋅(A+B‾)
Solution:
Using the Distributive Law:
(A+B)⋅(A+B‾) = A+(B⋅B‾) = A+0 = A
Simplify: A+A‾⋅BA
Solution:
Using the Redundancy Theorem:
A+A‾⋅B = A+B
Simplify: (A⋅B)+(A‾⋅B)
Solution:
Using the Distributive Law:
(A⋅B)+(A‾⋅B) = (A+A‾)⋅B = 1⋅B = B
Simplify: A⋅A‾+A⋅B
Solution:
Using the Complement Law and Identity Law:
A⋅A‾+A⋅B = 0+A⋅B
Simplify: A+A⋅B‾+B
Solution:
Using the Absorption Law:
A+A⋅B‾+B = A+B
Simplify: (A+B)⋅(A‾+B)⋅(A+B‾)
Solution:
Using the Consensus Theorem:
(A+B)⋅(A‾+B)⋅(A+B‾) = (A+B)⋅(A+B‾)
Further simplification using the Distributive Law:
(A+B)⋅(A+B‾) = A+(B⋅B‾) = A+0 = A
Simplify: (A+B)+(A‾⋅B‾)
Solution:
Using De Morgan’s Theorem and the Complement Law:
(A+B)+(A‾⋅B‾)=(A+B)+(A+B)‾ =1
Simplify: (A⋅B‾)+(A⋅B)+(A‾⋅B)
Solution:
Using the Consensus Theorem:
(A⋅B‾)+(A⋅B)+(A‾⋅B) = A⋅(B‾+B)+(A‾⋅B) = A⋅1+(A‾⋅B)=A+(A‾⋅B)=A

Who invented Boolean algebra?

Boolean algebra was invented by George Boole, an English mathematician, in the mid-19th century. His work laid the foundation for digital logic and computer science.

What is the significance of the Identity Law in Boolean algebra?

The Identity Law states:
A + 0 = A
A · 1 = A
These laws indicate that adding 0 or multiplying by 1 does not change the value of a variable, helping to simplify expressions.

Can Boolean algebra be used for practical applications?

Yes, Boolean algebra is extensively used in designing and analyzing digital circuits, computer algorithms, control systems, and logic gates. It is fundamental to the operation of all digital devices.

What is an example of using Boolean algebra in digital circuits?

In digital circuits, Boolean algebra simplifies the design of logic gates. For example, simplifying a complex circuit expression can reduce the number of gates needed, making the circuit more efficient and cost-effective.

What are the primary operations in Boolean algebra?

The primary operations in Boolean algebra are:
AND (·): True if both operands are true.
OR (+): True if at least one operand is true.
NOT (¬): Inverts the value of the operand.

Boolean algebra calculator

A Boolean algebra calculator simplifies logical expressions and evaluates Boolean operations. It helps design and analyze digital circuits by performing operations like AND, OR, NOT, NAND, NOR, XOR, and XNOR.

How is Boolean algebra applied in computer science?

In computer science, Boolean algebra is used to design and optimize algorithms, perform bitwise operations, and develop efficient data structures. It is also crucial in programming for decision-making processes and controlling flow using logical conditions.

How are Boolean expressions simplified using the Consensus Theorem?

The Consensus Theorem states:
(A · B) + (¬A · C) + (B · C) = (A · B) + (¬A · C)
This theorem shows that the term
B⋅C can be eliminated without changing the expression’s value, aiding in the simplification of complex Boolean expressions.

What is the Absorption Law in Boolean algebra?

The Absorption Law states:
A + (A · B) = A
A · (A + B) = A
This law helps simplify expressions by eliminating redundant terms, making it easier to analyze and design logic circuits.

What are De Morgan’s Theorems?

De Morgan’s Theorems provide rules for the complement of complex expressions:
¬(A + B) = ¬A · ¬B
¬(A · B) = ¬A + ¬B
These theorems are useful for simplifying Boolean expressions and designing digital circuits.

AI Generator

Text prompt

Add Tone

10 Examples of Public speaking

20 Examples of Gas lighting