3.3.9 · D1Sequences & Series

Foundations — Mathematical induction — principle, steps, problems

1,990 words9 min readBack to topic

This page assumes you know nothing about the notation in the parent note Mathematical Induction. We build every symbol from the ground up, in the order you need them.


0. What is a "natural number"?

The picture: an endless row of evenly spaced dots stretching to the right. Each dot is one number; there is a first dot, but no last dot.

Figure — Mathematical induction — principle, steps, problems

Why the topic needs it. Induction is a tool for proving something is true for all of these — an infinite list. If the list were finite we could just check every case by hand. The whole point is that we can't, so we need a cleverer argument.


1. The symbol — a "stand-in" for any number

The picture: think of as an empty box . You may drop into the box, or , or . The sentence around the box must stay meaningful for whatever you drop in.

Why the topic needs it. We want one single sentence that covers all of at once. A variable lets us write that one sentence instead of infinitely many.


2. The symbol — a statement that may be true or false

The picture: is a machine. You feed it a number ; out comes a light that is either green (true) or red (false).

Figure — Mathematical induction — principle, steps, problems

Why the topic needs it. Induction's goal is exactly: "show the light is green for every input ." Naming that goal lets us talk about it precisely.


3. The symbols and — "some domino" and "the next one"

The picture: in the endless row of dots, put your finger on one dot and call it . The dot immediately to its right is .

Why the topic needs it. The heart of induction is the sentence "if domino falls, then domino falls." We need names for "this domino" () and "the next domino" () to even write that sentence.


4. The arrow — "implies"

The picture: two dominoes standing close. The arrow is the gap being small enough that a falling left domino is guaranteed to hit the right one. The arrow says nothing about whether the left one actually fell — only "if it falls, the right one falls."

Figure — Mathematical induction — principle, steps, problems

Why the topic needs it. The entire inductive step is one implication: . Understanding that this is a conditional promise (not an assertion that is true) is what saves you from Trap 3 in the parent note.


5. The sum "" and the shorthand

The picture: a row of bars of heights . The sum is the total area of all the bars stacked.

Why the topic needs it. Half the induction examples are sum formulas. When we "add the next term to both sides," that next term is precisely the -th bar — the sum symbol makes "the next term" unambiguous: going from to just glues on one more bar, .


6. The bar — "divides"

The picture: try to tile a strip of length using identical tiles of length . If they fit perfectly with no gap, .

Why the topic needs it. Worked Example 3 in the parent proves "". To carry the divisibility across the step we rewrite the new expression as (old divisible chunk) + (leftover), then show the leftover is also a multiple of .


7. The inequality signs ,

Why the topic needs it. Example 4 proves the inequality . Notice a subtlety used there: to chain we need both a strict and a ""; mixing them correctly is what makes the step valid.


8. Powers: , ,

Why the topic needs it. Sum-of-squares and the inequality both live on these. The key algebra move — factoring out a common — relies on comfort with expanding powers like .


9. The Well-Ordering Principle — the hidden engine

The picture: the row of dots has a leftmost dot. Any sub-collection you circle, however scattered, still has a leftmost circled dot.

Why the topic needs it. This is why induction works. If failed anywhere, WOP hands you a smallest failing number ; the base case rules out , and the inductive step forces true — contradiction. See Well-Ordering Principle for the full argument.


Prerequisite map

Natural numbers 1 2 3 ...

Variable n as a box

Statement P of n true or false

Fixed k and next k+1

Implication arrow if then

Sum notation and dots

Add the next term

Divides symbol

Worked examples sums powers divisibility

Powers n^2 and 2^n

Order signs greater than

Principle of Induction

Well-Ordering Principle


Equipment checklist

State what each symbol means before moving on:

What does mean?
is a natural (counting) number
What is ?
A statement about that becomes true or false once a specific number is plugged in — not a number itself.
Why do we use a separate letter instead of in the inductive step?
is one fixed number we zoom into; ranges over all numbers. Keeping them apart avoids assuming what we want to prove.
What does picture as?
The dot immediately to the right of — the "next domino."
What does claim, and what does it NOT claim?
It claims "if then ." It does NOT claim is actually true.
What does mean?
is an exact multiple of (no remainder).
Is true?
Yes — , so is a multiple of every number.
Difference between and ?
; = multiplied by itself times. Very different growth.
What does going from to add?
Exactly one more term, — glue on the last bar.
What does the Well-Ordering Principle guarantee?
Every non-empty set of naturals has a smallest element — the engine behind induction.