Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Mathematical proofs explain why a statement is always true, not just why it works in a few examples. This cheat sheet covers three major proof methods: direct proof, proof by contradiction, and mathematical induction. Students need these methods to justify algebra, number theory, geometry, sequences, and later advanced mathematics.

A clear proof structure helps turn ideas into logical arguments.

Key Facts

  • A direct proof starts with the given information and uses definitions, algebra, and known facts to reach the conclusion.
  • To prove a conditional statement directly, assume PP is true and show that QQ must be true for the statement PQP \Rightarrow Q.
  • A proof by contradiction assumes the negation of the conclusion, then shows that this assumption leads to an impossible statement such as 0=10 = 1.
  • The contradiction method proves PP by assuming ¬P\neg P and deriving both RR and ¬R\neg R, which cannot both be true.
  • A mathematical induction proof has a base case, usually n=1n = 1 or n=0n = 0, and an inductive step from n=kn = k to n=k+1n = k + 1.
  • In induction, the induction hypothesis assumes the statement is true for n=kn = k, and the goal is to prove it true for n=k+1n = k + 1.
  • A common induction template is: prove P(1)P(1), assume P(k)P(k), prove P(k+1)P(k + 1), then conclude P(n)P(n) is true for all integers n1n \ge 1.
  • To disprove a universal statement such as n,P(n)\forall n, P(n), it is enough to find one counterexample where P(n)P(n) is false.

Vocabulary

Direct proof
A proof method that begins with known facts or assumptions and logically derives the desired conclusion.
Contradiction
A proof method that assumes the opposite of what must be proven and shows that this assumption creates an impossibility.
Mathematical induction
A proof method used to prove statements about integers by proving a starting case and a repeating step.
Base case
The first value in an induction proof, such as n=1n = 1, that must be verified directly.
Induction hypothesis
The temporary assumption in an induction proof that the statement is true for n=kn = k.
Counterexample
A single example that proves a universal statement is false.

Common Mistakes to Avoid

  • Proving only examples, then claiming the statement is always true, is wrong because several true cases do not prove a universal rule.
  • Forgetting the base case in induction is wrong because the inductive step only shows a chain continues after it has started.
  • Using the conclusion as a reason inside a direct proof is circular reasoning because it assumes what the proof is supposed to establish.
  • Assuming P(k+1)P(k + 1) in an induction proof is wrong because the induction hypothesis only allows you to assume P(k)P(k).
  • Stopping a contradiction proof after making the assumption is wrong because the proof must actually derive an impossible result or a statement known to be false.

Practice Questions

  1. 1 Use a direct proof to show that if nn is an even integer, then n2n^2 is even.
  2. 2 Use proof by contradiction to show that 2\sqrt{2} is irrational.
  3. 3 Use mathematical induction to prove that 1+2+3++n=n(n+1)21 + 2 + 3 + \cdots + n = \frac{n(n + 1)}{2} for all integers n1n \ge 1.
  4. 4 Explain when induction is a better proof strategy than checking many numerical examples.