← Circuit Toolkit

Boolean Simplifier

Simplify Boolean expressions using algebraic laws and De Morgan's theorem

Boolean simplification reduces a logic expression to fewer terms and literals — fewer gates, lower power, less propagation delay in the final circuit.

Key identities

De Morgan: ¬(A·B) = ¬A+¬B. Absorption: A+A·B = A. Idempotence: A+A = A. Complement: A+¬A = 1.

Algebraic vs graphical methods

Boolean algebra requires insight to apply in the right order. K-maps and Quine–McCluskey are systematic and guaranteed to find the minimum SOP/POS form.