Truth tables
A truth table is the brute-force answer to every question Boolean logic can ask. Write down all 2ⁿ valuations of the n variables, calculate each formula’s value in each one, and read the answer off the finished table: a formula is satisfiable if some row gives it 1, valid if every row does, and an inference is valid unless some row makes every premise 1 and the conclusion 0. The method always terminates and always decides, which is what makes it the reference point for every faster method that follows.
Scope. Propositional formulas under Boolean semantics, up to six variables — 64 rows. The method is the same for any finite number of variables; the app stops well before the arithmetic does.
Calculate a single formula, or enter an inference with ∴ and look for a counterexample row.
Use ¬, ∧, ∨, ↔ or →. Separate formulas with commas or new lines; put ∴ before a conclusion.
Text tree
Using it
Separate formulas with commas, semicolons or new lines, and introduce a
conclusion with ∴ or ⊨. For an inference, the app conjoins the premises
and the negation of the conclusion. It prints this SAT formula above the
table. The columns show variables, the formulas being conjoined, and the
final SAT value. Next evaluates one subformula at a time beside the table;
“Row calculations” records the intermediate values. Row buttons jump to a
valuation. A marked row with SAT value 1 is a countermodel.
The cost is the point: each extra variable doubles the table. Eight variables already mean 256 rows, which is why the chapter goes looking for something better.
In the book
- Chapter 5 · Truth tables sets out the method and what it guarantees.
- Chapter 5 · Searching the table treats validity as a search for one bad row.
- Chapter 4 · Boolean models supplies the valuations the rows enumerate.