Welcome to the World of Mathematical Induction!

Hello there! Today, we are diving into one of the most elegant and powerful tools in a mathematician's toolkit: Proof by Mathematical Induction. If you have ever watched a row of dominoes fall perfectly in sequence, you already understand the heart of this concept. In this chapter, we will learn how to prove that a mathematical statement is true for an infinite set of numbers (usually all positive integers) without having to check every single one individually (which would take forever!).

Don't worry if this seems a bit abstract at first. Mathematical induction is a "chain reaction" of logic. Once you get the first piece to fall and prove the connection between pieces, the rest takes care of itself!


The Domino Analogy

Imagine an infinitely long line of dominoes standing on end. How can you be absolutely certain that every single domino will eventually fall? You only need to prove two things:

  1. The First Push: The first domino (\( n=1 \)) actually falls.
  2. The Connection: If any particular domino falls (let's call it domino \( k \)), it is guaranteed to knock over the very next domino (\( k+1 \)).

If both these things are true, the "chain reaction" begins. The 1st knocks over the 2nd, the 2nd knocks over the 3rd, and so on, forever!


The Three Pillars of an Induction Proof

When writing an H3 Mathematics proof, we follow a very specific structure. Let's break down the formal steps for a statement \( P(n) \).

1. The Base Case (The First Push)

We must show that the statement is true for the smallest possible value of \( n \) (usually \( n=1 \), but check the question!).
Why? Without this, we have no starting point. A chain reaction can't start if no one pushes the first domino.

2. The Inductive Hypothesis (The "Assume" Step)

We assume that the statement is true for some arbitrary positive integer \( k \). We write this clearly: "Assume \( P(k) \) is true for some \( k \in \mathbb{Z}^+ \)."
Tip: This is the easiest part of the proof—you are just rewriting the original formula but replacing \( n \) with \( k \)!

3. The Inductive Step (The Connection)

This is where the magic happens. We use our assumption from Step 2 to prove that the statement must also be true for the next number, \( k+1 \).
Goal: Manipulate your expression for \( n = k+1 \) until it looks exactly like the target formula. This is usually the most algebraically intensive part.

Quick Review Box:
Base Case: Prove \( P(1) \) is true.
Assumption: Assume \( P(k) \) is true.
Target: Show \( P(k+1) \) is true using the assumption.


A Step-by-Step Example

Let's prove that the sum of the first \( n \) positive integers is given by the formula:
\( 1 + 2 + 3 + ... + n = \frac{n(n+1)}{2} \)

Step 1: Base Case

Let \( P(n) \) be the statement \( \sum_{r=1}^{n} r = \frac{n(n+1)}{2} \).
For \( n = 1 \):
LHS (Left Hand Side) = \( 1 \)
RHS (Right Hand Side) = \( \frac{1(1+1)}{2} = \frac{2}{2} = 1 \)
Since LHS = RHS, \( P(1) \) is true.

Step 2: Inductive Hypothesis

Assume \( P(k) \) is true for some \( k \in \mathbb{Z}^+ \). That is:
\( 1 + 2 + 3 + ... + k = \frac{k(k+1)}{2} \)

Step 3: Inductive Step

We want to show that \( P(k+1) \) is true. That is, we want to prove:
\( 1 + 2 + 3 + ... + k + (k+1) = \frac{(k+1)(k+2)}{2} \)

Starting with the LHS of \( P(k+1) \):
\( [1 + 2 + 3 + ... + k] + (k+1) \)
Substitute our Assumption into the brackets:
\( = \frac{k(k+1)}{2} + (k+1) \)
Now, let's use some algebra! Factor out \( (k+1) \):
\( = (k+1) [ \frac{k}{2} + 1 ] \)
\( = (k+1) [ \frac{k+2}{2} ] \)
\( = \frac{(k+1)(k+2)}{2} \)
This is exactly the RHS we were aiming for! So, \( P(k+1) \) is true whenever \( P(k) \) is true.

Conclusion

Since \( P(1) \) is true and \( P(k) \implies P(k+1) \), by the Principle of Mathematical Induction, \( P(n) \) is true for all \( n \in \mathbb{Z}^+ \).


Common Pitfalls to Avoid

  • Skipping the Conclusion: In H3 Mathematics, the formal concluding statement is mandatory. Don't lose "easy" marks by forgetting it!
  • Circular Reasoning: You cannot assume \( P(k+1) \) is true to prove \( P(k+1) \). You must start from the LHS (or RHS) and use the \( P(k) \) assumption as a substitution tool.
  • Incorrect Base Case: Sometimes the question says "for all \( n \geq 2 \)". In that case, your base case must be \( n=2 \), not \( n=1 \).
  • Algebraic Errors: Many induction problems in H3 involve sequences, series, or divisibility. Be very careful with your expansion and factoring in the Inductive Step.

Did You Know?

The "Domino Effect" is technically called the Principle of Weak Induction. There is also something called Strong Induction, where instead of just assuming the previous step is true, you assume all previous steps are true to prove the next one. It’s like saying "If all the previous dominoes have fallen, the next one will fall too!"


Key Takeaways for Your Revision

1. Structure is King: Stick to the 3-step format (Base, Assumption, Step).

2. The Goal Post: Always write down what you are trying to show for \( k+1 \) on a piece of scrap paper so you know what your algebraic "target" looks like.

3. Use the Assumption: If you haven't used your \( P(k) \) assumption somewhere in your Inductive Step, your proof is likely incorrect.

4. Practice Different Types: Induction isn't just for sums! Practice it with divisibility (e.g., prove \( 3^{2n} - 1 \) is divisible by 8) and inequalities.

Keep practicing! At first, induction feels like you're following a recipe, but once you understand the logic, you'll see it's one of the most reliable ways to solve complex proofs. You've got this!