Discretica

Boolean Algebra

Reference · Always free

Study Boolean algebra, logic gates, simplification techniques, and digital circuit design.

Concepts in this topic

  • Boolean BasicsUnderstand Boolean algebra and its laws
  • Logic GatesLearn the fundamental logic gates used in digital circuits
  • SimplificationSimplify Boolean expressions using algebraic methods and Karnaugh maps
  • CircuitsDesign and analyze combinational digital circuits

Key formulas & identities

Key formulas and identities for Boolean Algebra, with each formula and what it means.
NameFormulaMeaning
Identity Law (OR)x + 0 = xORing with 0 leaves the value unchanged
Identity Law (AND)x · 1 = xANDing with 1 leaves the value unchanged
Null/Domination (OR)x + 1 = 1ORing with 1 always gives 1
Complement Lawx + x̄ = 1, x · x̄ = 0A variable ORed with its complement is 1; ANDed is 0
De Morgan's (Boolean OR)(x + y)̄ = x̄ · ȳThe complement of a sum is the product of the complements
De Morgan's (Boolean AND)(x · y)̄ = x̄ + ȳThe complement of a product is the sum of the complements
XOR Expressionx ⊕ y = x · ȳ + x̄ · yXOR outputs 1 when exactly one input is 1
Absorption Lawx + x · y = x, x · (x + y) = xA variable absorbs terms containing it