Mathwords logoMathwords

Absorption Law — Definition, Formula & Examples

The Absorption Law states that combining a variable with the conjunction (or disjunction) of itself and another variable simply returns the original variable. In short, the extra term gets 'absorbed' and has no effect on the result.

For any propositions AA and BB, the Absorption Law provides two identities: A(AB)=AA \lor (A \land B) = A and A(AB)=AA \land (A \lor B) = A. Equivalently, in set theory: X(XY)=XX \cup (X \cap Y) = X and X(XY)=XX \cap (X \cup Y) = X.

Key Formula

A(AB)=AandA(AB)=AA \lor (A \land B) = A \qquad \text{and} \qquad A \land (A \lor B) = A
Where:
  • AA = Any proposition or Boolean variable
  • BB = Any proposition or Boolean variable

How It Works

When you see a logical expression where one variable appears both outside and inside a compound term, the Absorption Law lets you replace the entire expression with just that variable. For example, if you encounter p(pq)p \lor (p \land q) during a proof or simplification, you can immediately write pp. This works because the inner term (pqp \land q) can only be true when pp is already true, so it adds nothing new. You can verify either absorption identity by constructing a truth table: in every row, the compound expression matches the value of the absorbed variable.

Worked Example

Problem: Simplify the logical expression p(pq)p \land (p \lor q) using the Absorption Law.
Identify the pattern: The variable pp appears both as the left operand and inside the disjunction pqp \lor q. This matches the second form of the Absorption Law: A(AB)=AA \land (A \lor B) = A.
p(pq)p \land (p \lor q)
Apply Absorption: Substitute A=pA = p and B=qB = q into the law to absorb the redundant term.
p(pq)=pp \land (p \lor q) = p
Verify with a truth table: When pp is false, p(anything)p \land (\text{anything}) is false. When pp is true, pqp \lor q is true, so ptrue=truep \land \text{true} = \text{true}. In both cases the result equals pp.
Answer: The expression simplifies to pp.

Why It Matters

The Absorption Law is one of several identities you use repeatedly in discrete mathematics and digital logic design to simplify Boolean expressions. Reducing redundant terms leads to simpler circuit designs and shorter logical proofs, which matters in courses like AP Computer Science and college-level discrete math.

Common Mistakes

Mistake: Confusing the Absorption Law with the Idempotent Law (AA=AA \lor A = A) or the Domination Law (Atrue=trueA \lor \text{true} = \text{true}).
Correction: Absorption specifically involves two distinct variables where one 'absorbs' a compound term containing both. Make sure you identify that the same variable appears both outside and inside the inner operation.