NOT P
¬ P
P AND Q
P ∧ Q
P OR Q
P ∨ Q
If P then Q
P ⟹ Q
P if and only if Q
P ⟺ Q
NOT (P AND Q)
¬ P ∨ ¬Q
(NOT P) OR (NOT Q)
NOT (P OR Q)
¬ P ∧ ¬Q
(NOT P) AND (NOT Q)
NOT (If P then Q)
P ∧ (¬Q)
P AND (NOT Q)
NOT (For all x ∈ S, P(x))
There exists x ∈ S, (¬P(x))
NOT (There exists x ∈ S, P(x))
For all x ∈ S, (¬P(x))
Direct proof steps
Proof by cases
split the proposition into a finite number of cases and verify the proposition in each case
Proof by contradiction steps
Proof by induction steps
Proof by construction
When is a direct proof most useful
When proving “if (claim A is true), then (claim B is true)”
When is proof by cases most useful
For claims involving modular arithmetic, even v.s. odd, “is a multiple of” or absolute value
When is proof by construction most useful
When the claim asks you to “show that something exists”
When is proof by induction most useful
When previous results seem to build upon each other to yield a later result