Proof by induction

The typical method

  1. Make a conjecture
  2. Show it is true for n=1
  3. Assume it’s true for n=k
  4. Show it must also be true for n=k+1
  5. Conclude it’s true for all natural numbers n (where n \ge 1)

Prove that the series \frac1{1\times2}+\frac1{2\times3}+\frac1{3\times4}+\cdots+\frac1{n(n+1)}=\frac n{n+1}

How do we know that all integers n are covered?

You might be a bit confused as to how we can get from knowing that n=1 is true, to knowing that all integers are true.

If n=k is true for a specific value of k, then the next integer must also be true. So:

Proving using standard summation results

Prove 1^2+2^2+3^2+\cdots+n^2=\frac16n(n+1)(2n+1)

flashcards

QuestionAnswer
Prove that \frac1{1\times2}+\frac1{2\times3}+\cdots+\frac1{n(n+1)} = \frac n{n+1}Test when n=1: LHS =\frac12, RHS =\frac12. Base case true. Then for n=k assume it holds. Show for n=k+1: LHS becomes \frac k{k+1} + \frac1{(k+1)(k+2)} = \frac{k+1}{k+2}, RHS =\frac{k+1}{k+2}. Both match, so true by induction.
If n=1 is true, how do we know all integers n \ge 1 are covered?We know n=1 true. Assuming n=k true implies n=k+1 true. Letting k=1 gives n=2 true, then k=2 gives n=3 true, and so on for all positive integers.
How do you verify the base case?Show that the statement holds for n=1 by evaluating both sides and confirming they are equal.
What is the inductive hypothesis?Assume the statement is true for some natural number n=k, meaning the formula holds when n=k.
What do you check in the inductive step?Using the assumption for n=k, prove the statement is true for n=k+1, often by adding the next term to the existing sum and simplifying to the required form.
Prove 1^2+2^2+3^2+\cdots+n^2 = \frac16 n(n+1)(2n+1)Check n=1: LHS=1, RHS=\frac16(1)(2)(3)=1. Assume true for n=k. For n=k+1: LHS becomes \frac16k(k+1)(2k+1)+(k+1)^2 = \frac16(2k^3+9k^2+13k+6). RHS becomes \frac16(k+1)(k+2)(2k+3) = \frac16(2k^3+9k^2+13k+6). Both equal, so by induction formula holds.