Induction
ConceptLast updated August 16, 2026
Induction is a technique used to prove statements, where you need to prove a base case and the base+1 case. It can be thought of like a ladder or staircase, where you need to prove the first step and then prove how to get to the next step.
One way of showing the idea of induction is this:
1. Prove the base case P(1)2. ∀n∈N:P(n)⟹P(n+1)
If we can prove the base case and that P(n)⟹P(n+1) then we can show that we can get on the ladder and that each step will lead to the next.
Theorem¶
The set of natural numbers N={1,2,3,…} has an ordering, meaning that each subsequent element is larger than the prior.
Axiom: Well ordering property of N.
If S⊂N and S=ϕ then S has a smallest element.∃x∈S, ∀y∈S:x≤y
Let P(n) be a statement depending on n∈N. Assume the following:
- Base case: P(1) is true
- Inductive step: If P(m) is true then P(m+1) is true
Then P(n) is true for all n∈N.
Example Proof¶
Prove the following:
1+2+3+⋯+n=x=1∑nx=2n(n+1)
We proceed by induction. The base case of n=1:
1=21(1+1)
We use the inductive step to show the (n+1)-th case. Assume P(n) holds, then:
1+2+3+⋯+n+(n+1)=2n(n+1)+(n+1)=2n(n+1)+2(n+1)=2(n+1)(n+2)=2(n+1)((n+1)+1)inductive hypothesiscommon denominatorfactor out (n+1)=P(n+1)
Therefore ∑x=1nx=2n(n+1).