Karnaugh Map Generator

Technically, up to 32 inputs are supported. Please note that data is generated (and rendered) client-side, so inputs > 10 will probably crash your browser 💣👻

Truth Table

#x0x1y
000
101
210
311

Normal Forms

Canonical Conjunctive Normal Form

(x0 ∨ x1) ∧ (x0 ∨ ¬x1) ∧ (¬x0 ∨ x1) ∧ (¬x0 ∨ ¬x1)

Formula is a contradiction (always false).

Karnaugh Map

= True expression

¬x0 ∧ ¬x1#0
¬x0 ∧ x1#1
x0 ∧ ¬x1#2
x0 ∧ x1#3