Skip to content
Prerequisites

Before reading this page, you should be familiar with:

Truth Table

Definition

A truth table is a systematic listing of all possible truth values for a logical expression, showing the output for every combination of inputs.

Construction

For \(n\) propositional variables, a truth table has \(2^n\) rows.

Example: AND

\(P\)\(Q\)\(P \land Q\)
TTT
TFF
FTF
FFF

Example: Implication

\(P\)\(Q\)\(P \implies Q\)
TTT
TFF
FTT
FFT

Note: \(P \implies Q\) is false only when \(P\) is true and \(Q\) is false.

Backlinks