Boolean Algebra Cheat Sheet

Apr 20, 2020    #math   #computer-science   #discrete-mathematics  

I previously posted a logic rules cheat sheet and figured it was about time that I do the same for boolean algebra.

Expression Equivalent To Name of the Rule
X+Y X + Y Y+X Y + X Commutative
XY X \cdot Y YX Y \cdot X Commutative
(X+Y)+Z (X + Y) + Z X+(Y+Z) X + (Y + Z) Associative
(XY)Z (X \cdot Y) \cdot Z X(yZ) X \cdot (y \cdot Z) Associative
X+(YZ) X + (Y \cdot Z) (X+Y)(Z+Z) (X + Y) \cdot (Z + Z) Distributive
X(Y+Z) X \cdot (Y + Z) (XY)+(XZ) (X \cdot Y) + (X \cdot Z) Distributive
X+0 X + 0 X X Identity
X1 X \cdot 1 X X Identity
X+X X + X’ 1 1 Complement
XX X \cdot X’ 0 0 Complement
X+X X + X X X Idempotence
XX X \cdot X X X Idempotence