Understanding Boolean Algebra: Definition, Kinds, Properties, & Calculations

The core of every digital device and algorithm lies a simple yet powerful system: Boolean algebra. It enables the simplification of logical expressions used in the design and analysis of digital circuits and software algorithms.

This article introduces the fundamentals of Boolean algebra, from its basic operations to the critical properties and rules for simplifying Boolean expressions. Through practical examples, we'll guide you through the techniques to simplify complex logical expressions

What is Boolean Algebra?

Boolean algebra is a mathematical framework for analyzing and solving logical statements. It can be defined as:

“Boolean Algebra is a branch of algebra where the values of the variables are the truth values true and false, usually denoted as 1 and 0 respectively.”

Developed by George Boole in the mid-19th century, Boolean algebra provides the basis for the operation of computers and digital electronics.

Unlike traditional algebra, which deals with numbers and the relationships between them, Boolean algebra focuses on truth values and the logical relationships between them.

Operators of Boolean Algebra: its kinds

Boolean algebra revolves around three fundamental operations, which correspond to basic logic functions. Here's a brief overview:

1. AND (Conjunction):

This operation corresponds to the logical "and" function. It results in true (1) if and only if all operands are true. In Boolean algebra, it's often denoted by multiplication a.b or simply by writing the variables together (ab).  

The truth table for the AND operation is as follows:


a


b


ab

0

0

0

0

1

0

1

0

0

1

1

1

2. OR (Disjunction):

The OR operation reflects the logical "or" function. It yields true (1) if at least one of the operands is true. In Boolean notation, it's typically represented by addition (a + b).  The truth table for OR is:

The truth table for OR is:


a


b


a+b

0

0

0

0

1

1

1

0

1

1

1

1

3. NOT (Negation):

The NOT operation inverts the value of its operand. If the operand is true (1), the result is false (0), and vice versa. In Boolean expressions, NOT is often represented by an overbar (ā) or a prime (a’).  

The truth table for NOT is:


a


\[a^\prime\]

0

1

1

0

Besides these three primary operations, there are also derived operations that can be expressed in terms of AND, OR, and NOT. These include:

4. NAND (Not AND):

Produces the opposite outcome of OR. It's true only if all operands are false.

5. NOR (Not OR):

Produces the opposite outcome of OR. It's true only if all operands are false.

6. XOR (Exclusive OR):

True if and only if the operands differ.

7. XNOR (Exclusive NOR):

True if and only if the operands are the same.

Boolean Expression:

“A Boolean expression is a statement in Boolean algebra that can be evaluated to yield a Boolean value, either true (1) or false (0).”

Components:

  1. Boolean Variables: Represented by symbols (like a, b, x, y), these variables can take on the value of either 1 (true) or 0 (false).
  2. Constants: The values 1 (true) and 0 (false) are the only constants in Boolean algebra.
  3. Operators: The logical operations such as AND (, AND), OR (+, OR), NOT (ˉ, NOT), along with others like NAND, NOR, XOR (exclusive OR), and XNOR (exclusive NOR).

Evaluation:

To evaluate a Boolean expression, one must apply the rules or properties of Boolean algebra, considering the precedence of operators (NOT has the highest precedence, followed by AND, then OR).

The evaluation process often involves simplifying the expression using Boolean algebra's laws and properties until you reach a simple true (1) or false (0) outcome for specific input values of the variables.

Properties:

Boolean algebra's properties are fundamental characteristics that help in understanding and manipulating Boolean expressions efficiently.

1. Commutative Property:

  • For AND: [a⋅b = b⋅a]. This property states that the order in which variables are ANDed does not change the result.
  • For OR: [a + b = b + a]. Similarly, the order in which variables are ORed does not affect the outcome.

The commutative property allows the operands to be rearranged freely.

2. Associative Property:

  • For AND: [a⋅(b⋅c) = (a⋅b)⋅c].  The way in which variables are grouped in AND operations does not change the result.
  • For OR: [a + (b + c) = (a + b) + c]. The grouping of variables in OR operations is irrelevant to the outcome.

This property enables the regrouping of operands to simplify expressions, particularly when combining multiple operations.

3. Distributive Property:

  • AND over OR: [a⋅(b + c) = a⋅b + a⋅c]. AND distributes across OR.
  • OR over AND: [a + (b⋅c) = (a + b)⋅(a + c)]. OR distributes over AND.

The distributive property is useful for expanding expressions and in solving Boolean expressions by breaking them down into simpler parts.

4. Identity Property:

  • AND Identity: [a⋅1 = a]. ANDing a variable with 1 leaves it unchanged.
  • OR Identity: [a⋅1 = a]. ORing a variable with 0 leaves it unchanged.

This property highlights the concept of neutral elements in Boolean algebra, where 1 is the identity for AND, and 0 is for OR.

5. Null Property:

  • AND Null: [a⋅0 = 0]. ANDing any variable with 0 results in 0.
  • OR Null: [a + 1 = 1]. ORing any variable with 1 results in 1.

The null property emphasizes the power of 0 in AND operations and 1 in OR operations, acting as an "absorbing" element.

6. Idempotent Property:

  • [a⋅a = a]. ANDing a variable with itself does not change its value.
  • [a + a = a]. ORing a variable with itself leaves it unchanged.

The idempotent property suggests that repeating the same operation on a variable has no additional effect.

7. Complement Property:

  • [a⋅ā = 0]. A variable ANDed with its complement yields 0.
  • [a +ā = 1]. A variable ORed with its complement yields 1.

This property illustrates the notion that a variable and its complement are opposites, neutralizing each other in AND and OR operations.

8. Inverse Property:

  • [bar{ā} = a]. The double complement of a variable is the variable itself.

The inverse property shows that complementing a variable twice returns to the original variable, highlighting the reversibility of the complement operation.

How to solve Boolean expressions?

You can use the Boolean algebra calculator to speed up the process. But for the understanding of manual calculation, Let's go through a couple of examples to demonstrate the process.

Example 1: Simplifying an Expression

Problem: Simplify the Boolean expression:

A * (Not(B + Not(A)))

Solution:

1. Apply De Morgan's Law to the expression inside the complement: A * NOT(B + NOT (A)) = A * (NOT B * A)

2. This step uses the law that states NOT{A+B} = Ā . B̅

3. Apply the Commutative Property: A(B̅ . A) = A.A. B̅

4. This rearrangement makes it easier to see opportunities for simplification.

5. Apply the Idempotent Law: A.A.B̅ = A.B̅ Since A⋅A = A, the expression simplifies to A.B̅


A


B

\[\bar{B}\]


\[A\bar{B}\]

0

0

1

0

0

1

0

0

1

0

1

0

1

1

0

1

Example 2: Simplifying Using Multiple Properties

Problem: Simplify the expression: (A + Ā * B).(A+C)

Solution:

  1. Distribute Ā.B over A+C:

This step seems to suggest distributing, but let's hold off on actual distribution and look for a simpler route via properties.

2. Apply the Absorption Law to A + Ā * B:

Since A + Ā * B can be seen as A+B when considering A as the whole, by absorption, where A+A⋅B=A, we simplify to A⋅(A+C) This step leverages our understanding of the expression's form rather than mechanically applying distribution.

3. Apply the Idempotent Law:

Since A⋅A = A, and within our context A⋅(A+C)=A, (because A dominates A+C) we can simplify the entire expression to: A So, the simplified expression is A.

Variables: Switch between true (1) and false (0).

  • Literal: A variable or its negation used in expressions.
  • Complement: The inverse value of a variable; if x is true, \[\bar(x)\] (complement of x) is false.
  • Basic Operations: AND (all true inputs give true), OR (one true input suffices), NOT (flips the input).
  • Extended Operators: NAND, NOR, XOR (true if inputs differ), XNOR (true if inputs are identical).
  • Expressions: Formulas comprising variables, literals, and operators.
  • Truth Tables: Diagrams showing the output for all possible inputs.
  • Principles: Rules like De Morgan’s (for inverting expressions), Commutative, and Associative, which facilitate manipulation of expressions.

FAQ’s

1. What role does Boolean Algebra play in computer science?

Boolean Algebra is foundational in the design and analysis of digital circuits, computer algorithms, and programming, facilitating decision-making processes and logic flow.

2. How do you create a truth table for a Boolean expression?

A truth table lists all possible combinations of variables in an expression and their corresponding outcomes, illustrating the function of the Boolean expression in every scenario.

3. What are De Morgan’s Theorems?

De Morgan’s Theorems provide rules for transforming conjunctions into disjunctions and vice versa through the use of complements, playing a crucial role in the simplification of Boolean expressions.

  • NOT{A+B} = Ā .B̅. The complement of a disjunction is the conjunction of the complements.
  • NOT{A.B} = Ā+B̅. The complement of a conjunction is the disjunction of the complements.