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.
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.
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.
The picture: think of n as an empty box □. You may drop 1 into the box, or 7, or 1000. 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 1,2,3,… at once. A variable lets us write that one sentence instead of infinitely many.
The picture:P is a machine. You feed it a number n; out comes a light that is either green (true) or red (false).
Why the topic needs it. Induction's goal is exactly: "show the light is green for every input n." Naming that goal P(n) lets us talk about it precisely.
The picture: in the endless row of dots, put your finger on one dot and call it k. The dot immediately to its right is k+1.
Why the topic needs it. The heart of induction is the sentence "if domino k falls, then domino k+1 falls." We need names for "this domino" (k) and "the next domino" (k+1) to even write that sentence.
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."
Why the topic needs it. The entire inductive step is one implication: P(k)⇒P(k+1). Understanding that this is a conditional promise (not an assertion that P(k) is true) is what saves you from Trap 3 in the parent note.
The picture: a row of bars of heights 1,2,…,n. 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 (k+1)-th bar — the sum symbol makes "the next term" unambiguous: going from ∑i=1k to ∑i=1k+1 just glues on one more bar, (k+1).
The picture: try to tile a strip of length b using identical tiles of length a. If they fit perfectly with no gap, a∣b.
Why the topic needs it. Worked Example 3 in the parent proves "6∣n3−n". 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 6.
Why the topic needs it. Example 4 proves the inequality 2n>n. Notice a subtlety used there: to chain 2k+1>2k≥k+1 we need both a strict > and a "≥"; mixing them correctly is what makes the step valid.
Why the topic needs it. Sum-of-squares and the inequality 2n>n both live on these. The key algebra move — factoring out a common (k+1) — relies on comfort with expanding powers like (k+1)3.
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 P(n) failed anywhere, WOP hands you a smallest failing number m; the base case rules out m=n0, and the inductive step forces P(m) true — contradiction. See Well-Ordering Principle for the full argument.