Boolean Algebra Guide

Truth Tables

ABANDORNANDNORXORXNORNOT A
000011011
010110101
100110100
111100010

Boolean Laws

Identity Laws
A + 0 = A
A ยท 1 = A
Null Laws
A + 1 = 1
A ยท 0 = 0
Idempotent Laws
A + A = A
A ยท A = A
Complement Laws
A + A' = 1
A ยท A' = 0
Double Negation
(A')' = A
Commutative Laws
A + B = B + A
A ยท B = B ยท A
Associative Laws
A+(B+C) = (A+B)+C
Aยท(BยทC) = (AยทB)ยทC
Distributive Laws
Aยท(B+C) = AยทB + AยทC
A+(BยทC) = (A+B)ยท(A+C)
De Morgan's Laws
(A+B)' = A'ยทB'
(AยทB)' = A'+B'
Absorption Laws
A + AยทB = A
A ยท (A+B) = A

Logic Gate Symbols

GateExpressionDescription
ANDY = A ยท BOutput 1 only when all inputs are 1
ORY = A + BOutput 1 when any input is 1
NOTY = A'Output is inverse of input
NANDY = (AยทB)'Inverse of AND
NORY = (A+B)'Inverse of OR
XORY = AโŠ•BOutput 1 when inputs differ
XNORY = (AโŠ•B)'Output 1 when inputs are equal