Esc
user@example.com
View Profile
intermediate Digital Electronics

Truth Tables & Karnaugh Maps

Use the truth table generator to build and simplify Boolean functions. Explore multi-variable expressions and Sum of Products minimisation.

Operators: AND OR NOT XOR NAND NOR XNOR — e.g. (A AND B) OR NOT C

ABCOUT
0001
0010
0101
0110
1001
1010
1101
1111
Sum of Products (SOP)
NOT A AND NOT B AND NOT C
  OR  NOT A AND B AND NOT C
  OR  A AND NOT B AND NOT C
  OR  A AND B AND NOT C
  OR  A AND B AND C
// tutorial Step 1 / 5
  1. Enter the 4-variable majority function: '(A AND B) OR (A AND C) OR (A AND D) OR (B AND C) OR (B AND D) OR (C AND D)'. Output is 1 when 2 or more of A,B,C,D are 1.

    Show hint

    A majority gate is used in fault-tolerant systems (triple modular redundancy) and voting circuits.