Overview
This chapter introduces the Principle of Mathematical Induction (PMI), a fundamental method of proof used to establish that a statement holds for every natural number (or every integer from some starting index). The chapter explains the logic behind induction—showing a base case is true and then proving that if the statement holds for an arbitrary n it also holds for n+1—and presents common variants (simple/weak induction and the second/strong or complete induction). Importance: PMI is a central tool for proving summation formulas, divisibility properties, inequalities, and properties of sequences and recursively defined objects; it also connects to deeper ideas like the well-ordering principle. Key themes include the structure of an induction proof (base step, induction hypothesis, induction step), typical applications (sums of series, formulae for squares and cubes, divisibility results, inequalities, properties of sequences), recognition of when induction applies, and common pitfalls (wrong base case, assuming too much or too little in the hypothesis). By the end of the chapter a student will be able to: (1) write clear induction proofs with correct base and inductive steps,…
Learning Objectives
- Define the Principle of Mathematical Induction and state its two main steps (base case and inductive step).
- Explain the logical basis of induction and why establishing the base case and the inductive step implies truth for all natural numbers.
- Distinguish between weak (simple) induction and strong (complete) induction and give a brief example of each.
- Identify appropriate base cases for induction proofs, including cases with multiple or shifted bases.
- Formulate a correct inductive hypothesis and carry out the inductive step to prove a given statement for n + 1 from n.
- Prove standard summation formulas by induction (e.g., sum of first n natural numbers, squares, and cubes).
- Apply induction to prove inequalities involving n (for example, prove 2^n > n^2 for all n ≥ 5).
- Use induction to establish divisibility properties (for example, prove a^n - b^n is divisible by a - b under suitable conditions).
Topics in this chapter
15 topics · tap a topic title to jump straight to it.
Introduction and Motivation
Introduction and Motivation
Key Point: Principle of Mathematical Induction (ordinary): If P(m) is true for a starting integer m and for every k ≥ m, P(k) ⇒ P(k+1), then P(n) is true for all n ≥ m.
What is Mathematical Induction?
Mathematical Induction is a proof technique used to establish that a statement P(n) is true for every natural number n (or for every n ≥ a fixed integer). It is especially useful for propositions indexed by integers: formulas, inequalities, divisibility properties, recurrence relations, etc.
Motivation — the domino analogy
Imagine a row of dominoes. If the first domino falls (base case) and every time any domino falls it knocks down the next one (inductive step), then all dominoes will fall. Induction in mathematics works the same way: show the first case holds, then show that whenever the statement holds for an arbitrary k it also holds for k+1. Hence it holds for all natural numbers.
Formal two-step structure
- Base case: Prove P(1) (or P(m) for some starting integer m).
- Inductive step: Assume P(k) is true for some arbitrary k (this assumption is called the inductive hypothesis). Using this assumption, prove P(k+1) is true.
Why does it work?
If P(1) is true then by the inductive step P(2) is true, then P(3), and so on — forming an infinite chain. This informal idea can be formalized using the well-ordering principle of natural numbers (every non-empty set of natural numbers has a least element) or by treating the implication P(k) ⇒ P(k+1) as a mechanism that propagates truth to every successor.
Variants and cautions
There is ordinary induction (assume P(k) to prove P(k+1)) and strong induction (assume P(1), P(2), …, P(k) to prove P(k+1)). Strong induction is logically equivalent to ordinary induction but often more convenient. Common mistakes include skipping a valid base case (start might be n=0 or n=2 depending on the statement) or assuming what you need to prove inside the inductive step.
- Dominoes: If the first domino falls (base case) and every domino knocks down the next (inductive step), then all dominoes fall — physical intuition for induction.
- Stairs: To show you can reach every stair from the bottom, show you can reach the 1st stair and that from any stair k you can climb to k+1. Thus all stairs are reachable.
- Sum of first n natural numbers (sketch): P(n): 1+2+...+n = n(n+1)/2. Base: P(1) is 1 = 1(2)/2. Inductive step: assume 1+...+k = k(k+1)/2; then 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k+2)/2, so P(k+1) holds. Hence true for all n.
- Inequality example: P(n): 2^n > n for all n ≥ 1. Base: 2^1 = 2 > 1. Inductive step: assume 2^k > k, then 2^{k+1} = 2·2^k > 2k ≥ k+1 for k ≥ 1 (since 2k ≥ k+1 when k ≥ 1). Thus P(k+1) holds.
- \[Principle of Mathematical Induction (ordinary): If P(m) is true for a starting integer m and for every k ≥ m\]\[P(k) ⇒ P(k+1)\]\[then P(n) is true for all n ≥ m.\]
- \[Strong induction: If P(m)\]\[P(m+1), …\]\[P(k) together imply P(k+1) for every k ≥ m\]\[and the base cases m\]\[m+1, … up to some point hold\]\[then P(n) holds for all n ≥ m.\]
- \[Sum formula (common induction target): 1 + 2 + ... + n = n(n+1)/2 for n ≥ 1.\]
- \[Geometric sum (often proved by induction or algebra): 1 + r + r^2 + ... + r^{n-1} = (r^n - 1)/(r - 1)\]\[for r ≠ 1.\]
Natural Numbers and Well-ordering Principle
Natural Numbers and Well-ordering Principle
Key Point: Well-ordering principle: If S \u2260 \u2205 and S \subseteq N, then \u2208 m \u2208 S such that m \u2264 s for all s \u2208 S.
Natural numbers (denoted by N) are the counting numbers: 1, 2, 3, ... (CBSE Class 11 convention). They are the basic discrete building blocks used to count objects, index sequences, and measure steps.
Well-ordering principle (WOP): Every non-empty subset of natural numbers has a least (smallest) element. Formally, if S \u2260 \u2205 and S \subseteq N, then \u2208 m \u2208 S such that m \u2264 s for all s \u2208 S.
Why WOP matters:
- It captures the discrete, ordered nature of N: you cannot have an infinite descending chain of natural numbers.
- WOP is equivalent (logically) to the Principle of Mathematical Induction: either can be used to prove the other. Both are fundamental tools in proofs about integers.
Intuition and short proof-sketch of equivalence with induction:
- WOP => Induction: Suppose a property P(n) holds for n=1 and whenever it holds for n it holds for n+1. If some k violates P, the set S of counterexamples is a non-empty subset of N, so by WOP S has a least element r. But r cannot be 1 (since P(1) true), and if r>1 then r-1 is not in S so P(r-1) holds, so P(r) must hold by the inductive step — contradiction. Hence no counterexample exists and P(n) holds for all n.
- Induction => WOP: Suppose S is a non-empty subset of N with no least element. Define Q(n) = "no element of S is \u2264 n". Q(1) is true because 1 is not the least element of S; if Q(k) is true then Q(k+1) is also true (otherwise a counterexample \u2264 k+1 would produce a least element of S). By induction Q(n) holds for all n, contradicting S being non-empty. Thus S must have a least element.
Consequences and usages:
- Used to justify proofs by (ordinary and strong) induction.
- Used in existence proofs where you choose the smallest counterexample and derive a contradiction.
- Counting objects: given any non-empty collection of identical coins placed in piles labeled by natural numbers, the smallest non-empty pile has the smallest label; this uses WOP.
- Domino analogy (induction intuition): if the first domino falls (base) and each falling domino causes the next to fall (inductive step), then all dominoes fall.
- Smallest age in a classroom: the set of ages (positive integers) of students is non-empty and so has a least age — WOP gives existence of the youngest student.
- Math example — proof by minimal counterexample: to prove every natural number >1 has a prime factor, assume the set S of counterexamples is non-empty; by WOP pick the smallest n in S and derive a contradiction (because its divisors are smaller and must have prime factors).
- Number-line example: pick any non-empty subset of points corresponding to natural numbers; its leftmost point (minimum) exists due to WOP.
- \[Well-ordering principle: If S \u2260 \u2205 and S \subseteq N\]\[then \u2208 m \u2208 S such that m \u2264 s for all s \u2208 S.\]
- \[Principle of Mathematical Induction (ordinary): If P(1) is true and (P(k) \u2192 P(k+1)) for all k \u2208 N\]\[then P(n) is true for all n \u2208 N.\]
- \[Strong induction: If P(1) is true and (P(1) &\]\[&\]\[... &\]\[&\]\[P(k) \u2192 P(k+1)) for all k\]\[then P(n) for all n. (Equivalent to WOP.)\]
- \[Closure properties (basic): for m,n \u2208 N\]\[m + n \u2208 N and m \u22C5 n \u2208 N.\]
- \[Equivalence statements: WOP ⇔ Induction ⇔ Strong induction (all provide the same foundational ordering property of N).\]
Formal Statement of Principle of Mathematical Induction
Formal Statement of Principle of Mathematical Induction
Key Point: Formal principle: If P(n0) is true and for all k >= n0, P(k) => P(k+1), then for all n >= n0, P(n) is true.
What it says
The Principle of Mathematical Induction is a method to prove that a statement P(n) is true for every integer n greater than or equal to some starting integer n0. Formally, if two conditions hold:
- Base case: P(n0) is true.
- Inductive step: For every integer k >= n0, if P(k) is true then P(k+1) is also true (we write: P(k) => P(k+1)).
Then P(n) is true for all integers n >= n0.
Why it works (idea of proof)
Intuitively, the base case starts the chain and the inductive step propagates truth from each integer to the next, like a row of dominoes: knock down the first domino (base) and each domino knocks down the next (inductive step), so all fall. A formal proof often uses the well-ordering principle: assume the set S of integers >= n0 for which P(n) is false is nonempty; it has a least element m. By base case m cannot be n0, so m-1 >= n0 and P(m-1) is true, and then by the inductive step P(m) must be true, contradiction. Hence S is empty and P(n) holds for all n >= n0.
Key parts to check when using induction
- Clearly state n0 (where you start).
- Prove base case P(n0) explicitly.
- Assume P(k) for arbitrary k >= n0 (this is the inductive hypothesis).
- Using the hypothesis, deduce P(k+1) with correct algebra/reasoning.
- Conclude P(n) for all n >= n0.
Variants
Strong induction (complete induction) assumes P(j) true for all j with n0 <= j <= k and uses that to prove P(k+1). It is equivalent in power to ordinary induction but sometimes easier to apply.
- Sum of first n natural numbers: Prove 1 + 2 + ... + n = n(n+1)/2 for all n >= 1. Base: n=1 gives 1 = 1(2)/2. Inductive step: assume 1+...+k = k(k+1)/2, then 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k+2)/2, so true for k+1. Conclude true for all n >= 1.
- Inequality example: Prove 2^n > n for all integers n >= 1. Base: n=1 gives 2 > 1. Inductive step: assume 2^k > k. Then 2^{k+1} = 2*2^k > 2k. Since 2k >= k+1 for k >= 1, we get 2^{k+1} > k+1. So holds for all n >= 1.
- Divisibility example: Prove 7^n - 1 is divisible by 6 for all n >= 1. Base: n=1 gives 7-1=6 divisible by 6. Inductive step: assume 7^k -1 = 6m. Then 7^{k+1}-1 = 7*(7^k)-1 = 7(7^k-1)+6 = 7*(6m)+6 = 6(7m+1), divisible by 6. So true for all n >= 1.
- \[Formal principle: If P(n0) is true and for all k >= n0\]\[P(k) => P(k+1)\]\[then for all n >= n0\]\[P(n) is true.\]
- \[Inductive hypothesis (typical): assume P(k) holds for an arbitrary k >= n0\]\[show P(k+1) holds.\]
- \[Example identities proved by induction: Sum: 1+2+...+n = n(n+1)/2\]\[Sum of squares: 1^2+2^2+...+n^2 = n(n+1)(2n+1)/6\]\[Geometric: 1+r+...+r^{n-1} = (r^n-1)/(r-1) for r != 1.\]
- \[Strong induction statement: If P(n0) is true and for all k >= n0\]\[(P(n0) and P(n0+1) and ... and P(k)) => P(k+1)\]\[then P(n) holds for all n >= n0.\]
Structure of an Inductive Proof
Structure of an Inductive Proof
Key Point: To prove P(n) for all n ≥ m: (i) Base: show P(m) is true. (ii) Inductive hypothesis: assume P(k) true for arbitrary k ≥ m. (iii) Inductive step: deduce P(k+1) from P(k). Conclude P(n) true for all n ≥ m.
Mathematical induction is a method to prove that a statement P(n) holds for every integer n greater than or equal to some starting value m (usually m = 1). An inductive proof has a fixed, logical structure that mimics a chain reaction: establish the first link, then show that any link implies the next one. If both are true, every link in the (infinite) chain is true.
Standard structure (three parts)
- Base case: Verify P(m) is true for the starting value m (often m = 1). This anchors the argument.
- Inductive hypothesis: Assume P(k) is true for an arbitrary but fixed integer k ≥ m. This is a temporary assumption used only inside the next step.
- Inductive step: Using the inductive hypothesis, prove P(k+1) is true. Conclude that if P(k) holds then P(k+1) holds.
Conclusion: From the base case and the inductive step we conclude P(n) is true for all integers n ≥ m.
Notes and variants: (i) The starting index m can be any integer; adjust the base case accordingly. (ii) Strong induction assumes P(j) true for all j with m ≤ j ≤ k and uses that to prove P(k+1). It is logically equivalent but often easier for recurrence or divisibility problems. (iii) Always state clearly what the inductive assumption is and where it is used; check algebra and edge cases (e.g., when k = 0 or small n behave differently).
- Sum of first n natural numbers: Prove 1 + 2 + ... + n = n(n+1)/2 for n ≥ 1. Base: n=1 gives 1 = 1(2)/2. Inductive hypothesis: assume 1+...+k = k(k+1)/2. Inductive step: 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2 + 1) = (k+1)(k+2)/2, so formula holds for k+1. Hence true for all n ≥ 1.
- Divisibility example: Prove n^3 − n is divisible by 6 for all integers n ≥ 1. Base: n=1 gives 0 divisible by 6. Inductive hypothesis: assume k^3 − k is divisible by 6. Show (k+1)^3 − (k+1) = (k^3 − k) + 3k(k+1). By hypothesis first term divisible by 6; 3k(k+1) is divisible by 6 because k(k+1) is even, so total divisible by 6. Thus true for all n ≥ 1.
- Inequality example: Prove 2^n ≥ n+1 for all integers n ≥ 1. Base: n=1 gives 2 ≥ 2. Inductive hypothesis: assume 2^k ≥ k+1. Then 2^{k+1} = 2·2^k ≥ 2(k+1) = k+1 + (k+1) ≥ k+2 for k ≥ 1, so 2^{k+1} ≥ (k+1)+1. Thus true for all n ≥ 1.
- \[To prove P(n) for all n ≥ m: (i) Base: show P(m) is true. (ii) Inductive hypothesis: assume P(k) true for arbitrary k ≥ m. (iii) Inductive step: deduce P(k+1) from P(k)\]\[Conclude P(n) true for all n ≥ m.\]
- \[Symbolically: [P(m)] and [for all k ≥ m\]\[P(k) ⇒ P(k+1)] ⇒ for all n ≥ m\]\[P(n).\]
- \[Strong induction form: if P(m)\]\[and for all k ≥ m\]\[(P(m) and P(m+1) and ... and P(k)) ⇒ P(k+1)\]\[then P(n) holds for all n ≥ m.\]
- \[Common algebraic manipulations used in inductive steps: replace sum 1+2+...+k by the assumed formula\]\[expand (k+1)^p via binomial expansion\]\[factor expressions like (k+1)^3 − (k+1) = (k^3 − k) + 3k(k+1).\]
Variations of Induction
Variations of Induction
Key Point: Ordinary induction template: If P(n_0) true and (for all k ≥ n_0, P(k) ⇒ P(k+1)), then P(n) true for all n ≥ n_0.
What is Mathematical Induction?
Mathematical induction is a proof technique used to show that a statement P(n) holds for all integers n greater than or equal to some starting integer (usually 1). The usual structure: (i) Base Case: prove P(1) (or P(start)), and (ii) Inductive Step: assume P(k) and prove P(k+1). This is often called weak or ordinary induction.
Why variations?
Some problems need stronger assumptions or more base cases. These give rise to useful variations: strong (complete) induction and k-step (multiple-base) induction. All these forms are logically equivalent to the well-ordering principle, but each is more convenient for certain proofs.
1. Ordinary (Weak) Induction
Structure: prove P(n_0) for the first n_0, then show P(k) ⇒ P(k+1) for all k ≥ n_0. Use when P(k+1) can be deduced directly from P(k).
2. Strong (Complete) Induction
Structure: prove P(n_0) (sometimes more base cases), then show: if P(n_0), P(n_0+1), …, P(k) are all true, then P(k+1) is true. In other words assume the statement holds for all smaller integers up to k to prove it for k+1. Use when P(k+1) depends on several earlier instances, not just the immediate predecessor. Classic use: existence of prime factorization.
3. k-step (r-step or multiple-base) Induction
Structure: when recurrence or statement depends on the previous r values. Provide base cases P(n_0), P(n_0+1), …, P(n_0+r-1). Then assume P(m) true for the last r indices m = k-r+1, …, k and prove P(k+1). This is natural for linear recurrences like Fibonacci where order is 2 (r=2).
4. Structural and Other Forms
Structural induction is used on recursively defined objects (trees, strings). Backward or reverse induction proves for all n ≤ N by starting at N and stepping down. These are variations adapted to the domain of the statement.
When to choose which?
- If P(k+1) uses only P(k): ordinary induction is enough.
- If P(k+1) uses several earlier values (P(k), P(k−1), ...): use k-step or strong induction.
- For recursively defined objects (e.g., expressions, trees): use structural induction.
Equivalence note
Though they look different, weak induction, strong induction and the well-ordering principle are equivalent: each can be derived from the others.
Common pitfalls
- Forgetting necessary base cases (especially for k-step induction).
- Assuming the induction hypothesis incorrectly (using it for n+1 while only established for ≤ n).
- Failing to show how the assumed cases combine to give the next case.
Short template (ordinary):
1. Base case: verify P(n_0).
2. Induction hypothesis: assume P(k) true for some k ≥ n_0.
3. Induction step: prove P(k+1) using the hypothesis.
4. Conclude: P(n) true for all n ≥ n_0.
- Ordinary induction (sum formula): Prove 1 + 2 + ... + n = n(n+1)/2 for all n ≥ 1. Base: n=1 gives 1 = 1(2)/2. Inductive step: assume sum to k is k(k+1)/2, then sum to k+1 = k(k+1)/2 + (k+1) = (k+1)(k+2)/2.
- Strong induction (prime factorization existence): Claim: every integer n > 1 is a product of primes. Base: n=2 is prime. Inductive step: assume true for all integers 2 ≤ m ≤ k. For k+1: if k+1 is prime, done; otherwise k+1 = a·b with 2 ≤ a,b ≤ k, and by hypothesis a and b factor into primes, so k+1 does too.
- k-step induction (Fibonacci upper bound): Let F1=1, F2=1, Fn=F_{n-1}+F_{n-2}. Show Fn ≤ 2^{n-1} for all n ≥ 1. Base: n=1,2 hold (1 ≤ 1 and 1 ≤ 2). Induction: assume true for all ≤ k, then F_{k+1} = F_k + F_{k-1} ≤ 2^{k-1} + 2^{k-2} = 2^{k-1}(1 + 1/2) = 3·2^{k-2} ≤ 2^k for k ≥ 3 (or use sharper constants). Here two base cases are required because recurrence order is 2.
- Postage stamp problem (3- and 5-cent coins): Prove every integer n ≥ 8 can be expressed as 3x + 5y with nonnegative integers x,y. Base: check n=8,9,10 (8=3+5, 9=3·3, 10=5·2). Induction (strong/k-step idea): for k ≥ 8 assume true for all 8 ≤ m ≤ k; to get k+1, subtract 3 from some representation of k-2 or use other small cases; a 3-step/checks approach ensures the next values follow.
- \[Ordinary induction template: If P(n_0) true and (for all k ≥ n_0\]\[P(k) ⇒ P(k+1))\]\[then P(n) true for all n ≥ n_0.\]
- \[Strong induction template: If P(n_0) true and (for all k ≥ n_0, [P(n_0) ∧ P(n_0+1) ∧ … ∧ P(k)] ⇒ P(k+1))\]\[then P(n) true for all n ≥ n_0.\]
- \[k-step induction (order r): If P(n_0)\]\[P(n_0+1), …\]\[P(n_0+r−1) are true and for all k ≥ n_0+r−1, [P(k−r+1) ∧ … ∧ P(k)] ⇒ P(k+1)\]\[then P(n) true for all n ≥ n_0.\]
- \[Equivalence (well-ordering): Every nonempty set of positive integers has a least element ⇔ principle of mathematical induction.\]
Proof Techniques and Strategies
Proof Techniques and Strategies
Key Point: Induction template: (1) Verify P(1). (2) Assume P(k) true. (3) Prove P(k+1) using P(k). Conclude P(n) for all n ≥ 1.
What is a proof technique? A proof technique is a systematic method for showing that a mathematical statement is true for all values in its domain. In Class 11 (Principle of Mathematical Induction), the main technique studied is mathematical induction, but understanding when and how to use induction alongside other techniques is important.
Common proof methods
- Direct proof: Start from known facts/definitions and use logical steps to reach the statement to be proved.
- Proof by contrapositive: To prove “If P then Q”, prove the equivalent statement “If not Q then not P”.
- Proof by contradiction: Assume the negation of the statement and derive a contradiction with known facts.
- Mathematical induction (weak/ordinary): Prove base case P(1) (or P(0)), then show P(k) ⇒ P(k+1). Concludes P(n) holds for all relevant n.
- Strong (complete) induction: Assume the statement holds for all values ≤ k and use that to prove it for k+1. Useful when k+1 depends on several earlier cases.
- Well-ordering principle: Every nonempty set of positive integers has a least element; often used equivalently to prove statements by contradiction or induction.
Structure of a standard induction proof (strategy)
- Base case: Verify the statement for the initial integer (commonly n = 1 or n = 0).
- Induction hypothesis: Assume the statement is true for a fixed but arbitrary n = k.
- Induction step: Using the hypothesis, prove the statement for n = k + 1. Often requires algebraic manipulation, factorization, or adding/subtracting terms to connect P(k) to P(k+1).
- Conclusion: By induction, the statement holds for all integers n greater than or equal to the base case.
Practical strategies when using induction
- Check the simplest cases first; sometimes the base case must start at n = 0 or a higher value (e.g., n = 2).
- If P(k) ⇒ P(k+1) looks hard, try proving a stronger statement Q(n) that makes the step easier (then Q ⇒ original statement).
- Use known identities (factorization, binomial theorem, telescoping sums) to transform P(k+1) into an expression containing P(k).
- For divisibility proofs, express the k+1 case in terms of the k case plus a factor that is divisible by the modulus.
- For inequalities, careful bounding and monotonicity arguments often help when moving from k to k+1.
- If the k+1 depends on multiple previous values, consider strong induction.
Common pitfalls
- Forgetting to verify the base case or verifying the wrong base case.
- Assuming what you need to prove inside the induction step (circular reasoning).
- Applying induction to statements that are not naturally indexed by integers.
How induction connects to real life (intuition)
- Domino effect: proving the first domino falls (base case) and that any fallen domino knocks the next one down (induction step) ensures all dominos fall.
- Climbing a ladder: show you can step on the first rung and that if you can reach rung k you can reach k+1; thus you can reach any rung.
- Sum of first n natural numbers: Prove 1 + 2 + ... + n = n(n+1)/2. Base: n=1 gives 1 = 1·2/2. Induction: assume sum to k is k(k+1)/2, then sum to k+1 = k(k+1)/2 + (k+1) = (k+1)(k+2)/2.
- Sum of squares: 1^2 + 2^2 + ... + n^2 = n(n+1)(2n+1)/6. Use base n=1 and algebraic manipulation in the induction step (add (k+1)^2 and simplify).
- Divisibility example: Prove 7^n − 1 is divisible by 6 for all n ≥ 1. Base: n=1 gives 7−1=6. Induction: assume 7^k − 1 = 6m; then 7^{k+1} − 1 = 7(7^k−1) + (7−1) = 7·6m + 6 = 6(7m+1), divisible by 6.
- Inequality example: Prove 2^n > n for all n ≥ 1. Base: n=1 gives 2 > 1. Induction: assume 2^k > k. Then 2^{k+1} = 2·2^k > 2k. For k ≥ 1, 2k ≥ k+1 (for k ≥ 1), so 2^{k+1} > k+1.
- Strong induction example (prime factorization): Every integer n > 1 is either prime or a product of primes. Base: n=2 is prime. Induction: assume true for all 2 ≤ m ≤ k. For k+1, if prime done; if composite, write k+1 = ab with 2 ≤ a,b ≤ k, and apply hypothesis to a and b to get prime factors.
- \[Induction template: (1) Verify P(1). (2) Assume P(k) true. (3) Prove P(k+1) using P(k)\]\[Conclude P(n) for all n ≥ 1.\]
- \[Arithmetic series: 1 + 2 + ... + n = n(n+1)/2\]
- \[Sum of squares: 1^2 + 2^2 + ... + n^2 = n(n+1)(2n+1)/6\]
- \[Sum of cubes: 1^3 + 2^3 + ... + n^3 = [n(n+1)/2]^2\]
- \[Geometric series (finite): a + ar + ... + ar^{n-1} = a(1−r^n)/(1−r) for r ≠ 1\]
- \[Factorization useful for divisibility: a^{n+1} − b^{n+1} = (a−b)(a^n + a^{n−1}b + ... + b^n)\]
Applications — Sums and Series
Applications — Sums and Series
Key Point: Sum of first n natural numbers: 1 + 2 + ... + n = n(n + 1)/2
Overview. In the chapter on the Principle of Mathematical Induction (PMI), a central application is proving formulas for finite sums and series: closed forms for 1 + 2 + ... + n, sums of powers, arithmetic series, geometric series, etc. PMI gives a systematic method to show a proposed formula works for every positive integer n.
Induction template (how to apply PMI to sums).
- Base case: Verify the formula for n = 1 (or the smallest relevant n).
- Induction hypothesis: Assume the formula holds for n = k (i.e. assume the closed form equals the sum up to k).
- Induction step: Use the hypothesis to show the formula holds for n = k + 1 by adding the (k+1)-th term and simplifying to get the proposed expression for k+1.
Why it works for sums. Sums usually have a simple recurrence: S_{n+1} = S_n + (n+1)-th term. This recurrence fits exactly with the induction step: assume S_n has the closed form, then add the next term and simplify to reach the closed form for S_{n+1}.
Typical examples proved by induction. sum of first n natural numbers, sum of first n odd numbers, sum of first n even numbers, sum of squares and cubes, finite geometric series, and sum formula for an arithmetic progression. Proofs are short because the next partial sum is previous sum plus one extra term.
Notes on sigma notation. A sum is often written as Σ_{r=1}^n a_r. To prove a closed form for Σ_{r=1}^n a_r, show it holds for n=1 and that adding a_{k+1} to the k-case yields the (k+1)-case.
- Prove 1 + 2 + ... + n = n(n + 1)/2 by induction. Base case n=1: 1 = 1·2/2. Assume for k: 1+...+k = k(k+1)/2. Then 1+...+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2 + 1) = (k+1)(k+2)/2, so holds for k+1.
- Prove 1^2 + 2^2 + ... + n^2 = n(n+1)(2n+1)/6. Base n=1: 1 = 1·2·3/6. Assume for k and add (k+1)^2; algebraic simplification (use expansion) yields formula for k+1.
- Finite geometric series: show 1 + r + r^2 + ... + r^{n-1} = (1 - r^n)/(1 - r) for r ≠ 1 by induction. Base n=1: left =1. Assume for k, then add r^k and simplify to get (1 - r^{k+1})/(1 - r).
- Real-life (compound savings): If you deposit a fixed amount A at the end of each period into an account earning interest rate r, the accumulated value after n deposits is A·( (1+r)^n - 1 )/r. This is a geometric series; induction verifies the formula for partial sums of deposits.
- Triangular numbers (arrangements): The number of dots in triangular arrangements equals 1 + 2 + ... + n = n(n+1)/2. Induction proves this formula and explains stacking problems like seating rows or handshake counts in small groups.
- \[Sum of first n natural numbers: 1 + 2 + ... + n = n(n + 1)/2\]
- \[Sum of first n odd numbers: 1 + 3 + 5 + ... + (2n-1) = n^2\]
- \[Sum of first n even numbers: 2 + 4 + ... + 2n = n(n + 1)\]
- \[Sum of squares: 1^2 + 2^2 + ... + n^2 = n(n + 1)(2n + 1)/6\]
- \[Sum of cubes: 1^3 + 2^3 + ... + n^3 = [n(n + 1)/2]^2\]
- \[Arithmetic series (n terms\]\[first term a\]\[common difference d): S_n = n/2 · [2a + (n-1)d] = n(a + l)/2 where l is last term\]
Applications — Divisibility Results
Applications — Divisibility Results
Key Point: If a ≡ b (mod m) then a^n ≡ b^n (mod m) for every n ∈ N.
Overview. In the Principle of Mathematical Induction (PMI) we often use induction to prove statements about divisibility for all natural numbers n. Many useful results can be proved in a uniform way by combining simple modular arithmetic facts, factorisations and induction.
Basic idea and a key lemma (useful for many problems). If m | (a − b) (i.e. a ≡ b (mod m)), then for every natural number n we have m | (a^n − b^n). This can be proved either by factorisation a^n − b^n = (a − b)(a^{n-1} + a^{n-2}b + ··· + b^{n-1}) or by induction:
- Base n = 1: a^1 − b^1 = a − b is divisible by m by hypothesis.
- Inductive step: assume m | (a^k − b^k). Then a^{k+1} − b^{k+1} = a(a^k − b^k) + b^k(a − b). Both terms are divisible by m, so m | (a^{k+1} − b^{k+1}).
Immediate corollaries often used:
- If a ≡ 1 (mod m) then m | (a^n − 1) for every n ≥ 1.
- If a ≡ r (mod m) then a^n ≡ r^n (mod m) for every n ≥ 1 (proved by induction on n).
- Special case: 10 ≡ 1 (mod 9) so 9 | (10^n − 1); hence a string of n nines is divisible by 9. Also 10 ≡ −1 (mod 11) so 10^n ≡ (−1)^n (mod 11): this gives divisibility rules involving 11.
Typical proofs by induction used in exercises. Many CBSE problems ask to prove statements such as “for all n ∈ N, m divides some expression in n”. The standard pattern:
- Check the base case (usually n = 1 or small n).
- Assume the statement holds for n = k.
- Use algebra, factorisation, modular congruence or multiplication by a to obtain the statement for n = k + 1.
Why these results matter (applications / motivation).
- Understanding residues (remainders) of powers helps in computing last digits, checksums and cyclic patterns (e.g. last digit of 2^n repeats every 4).
- Divisibility results are used in checksum schemes (ISBN-10 uses mod 11), hashing, some simple cryptographic observations and in problem solving (contest mathematics).
- They give fast tests for divisibility of large numbers (using congruences rather than full division).
Connections with other algebraic facts. Factorisation identities commonly used together with induction:
- a^n − b^n = (a − b)(a^{n-1} + a^{n-2}b + ··· + b^{n-1}).
- a^n + b^n is divisible by a + b when n is odd (because a^n + b^n = (a + b)(...).)
Short remark on alternate (non-inductive) methods. Some divisibility statements follow immediately from congruence reasoning or binomial theorem (for example, for any n, (n+1)^n − 1 is divisible by n because binomial expansion gives (n+1)^n = 1 + n·(integer)). Still, induction gives a systematic way to prove families of such results.
- Prove that 3 divides 4^n − 1 for every natural number n. Proof: 4 ≡ 1 (mod 3). By the lemma, 4^n ≡ 1^n ≡ 1 (mod 3); hence 3 | (4^n − 1).
- Prove that 7 divides 8^n − 1 for every n ≥ 1. Reason: 8 ≡ 1 (mod 7) so 8^n ≡ 1 (mod 7); thus 7 | (8^n − 1).
- Prove that 5 divides 2^{4n} − 1 for every n. Because 2^4 = 16 ≡ 1 (mod 5), we have (2^4)^n ≡ 1^n ≡ 1 (mod 5), so 5 | (2^{4n} − 1).
- Prove that 11 divides 10^n − (−1)^n. Since 10 ≡ −1 (mod 11), 10^n ≡ (−1)^n (mod 11). Therefore 11 | (10^n − (−1)^n). In particular, if n is even then 11 | (10^n − 1); if n is odd then 11 | (10^n + 1).
- Prove that n divides (n+1)^n − 1 for all n ≥ 1. Using binomial theorem: (n+1)^n = sum_{k=0}^n C(n,k) n^k = 1 + n·M for some integer M, so (n+1)^n − 1 is a multiple of n.
- General statement: If m | (a − b) then m | (a^n − b^n) for every n ≥ 1. Proof by induction: base n=1 true; assume true for n=k. Then a^{k+1} − b^{k+1} = a(a^k − b^k) + b^k(a − b), both terms divisible by m, so the sum is divisible by m.
- \[If a ≡ b (mod m) then a^n ≡ b^n (mod m) for every n ∈ N.\]
- \[If a ≡ 1 (mod m) then m | (a^n − 1) for every n ≥ 1.\]
- \[a^n − b^n = (a − b)(a^{n-1} + a^{n-2}b + ⋯ + b^{n-1}) → so (a − b) | (a^n − b^n).\]
- \[If a ≡ r (mod m) then a^n ≡ r^n (mod m)\]\[in particular, 10^n ≡ (−1)^n (mod 11) and 10^n ≡ 1 (mod 9).\]
- \[Binomial special case: (n+1)^n − 1 = n·(integer) → n | ((n+1)^n − 1).\]
Applications — Inequalities
Applications — Inequalities
Key Point: Bernoulli: (1 + x)^n ≥ 1 + n x for all n ∈ N and x ≥ -1.
Principle of Mathematical Induction (PMI) is often used to prove inequalities that are stated for every natural number n (or for n ≥ n0). The general method is:
- Base case: Verify the inequality for the smallest n (usually n = 1 or n = n0).
- Inductive hypothesis: Assume the inequality holds for some k ≥ n0.
- Inductive step: Using the hypothesis, manipulate algebraically to deduce the inequality for k+1. Typical tactics: multiply both sides by positive quantities, add/subtract convenient terms, factor, use monotonicity, or apply known inequalities (Bernoulli, AM–GM, binomial expansion).
Key remarks when using induction for inequalities:
- Sometimes the statement must be strengthened (prove a stronger inequality) so the inductive step becomes easier.
- Careful handling of signs: ensure any multiplier used is positive so the direction of inequality is preserved.
- For inequalities involving functions of n that grow rapidly (e.g., exponentials), it is common to verify a few base cases (e.g., n = 1,2,3,4) before a general inductive step becomes valid.
Common inequality results proved by induction include Bernoulli's inequality, bounds comparing polynomial and exponential growth, factorial vs exponential lower bounds, and AM–GM in certain forms.
- Bernoulli's inequality: For n ∈ N and x ≥ -1, (1+x)^n ≥ 1 + n x. Proof outline: Base n=1 true. Assume (1+x)^k ≥ 1 + kx. Multiply both sides by (1+x) ≥ 0 and expand to get (1+x)^{k+1} ≥ 1 + (k+1)x + k x^2 ≥ 1 + (k+1)x (since k x^2 ≥ 0).
- Factorial bound: n! ≥ 2^{n-1} for n ≥ 1. Proof: Base n=1: 1! = 1 = 2^{0}. Assume k! ≥ 2^{k-1}. Then (k+1)! = (k+1)k! ≥ (k+1)2^{k-1} ≥ 2^{k} because k+1 ≥ 2. So holds for k+1.
- Exponential vs polynomial: 2^n > n^2 for n ≥ 5. Proof sketch: Check base n=5: 2^5=32 > 25. Assume 2^k > k^2 for k ≥ 5. Then 2^{k+1} = 2·2^k > 2·k^2. Show 2·k^2 ≥ (k+1)^2 for k ≥ 5 because 2k^2 - (k+1)^2 = k^2 - 2k -1 = (k-1)^2 -2 ≥ 0 for k ≥ 5. Thus 2^{k+1} > (k+1)^2.
- Sum of geometric tail: S_n = 1 + 1/2 + 1/4 + ... + 1/2^{n} < 2 for all n. Proof by induction: Base n=0: 1 < 2. Assume S_k < 2. Then S_{k+1} = S_k + 1/2^{k+1} < 2 + positive term, but better to use closed form S_n = 2 - 1/2^{n} < 2 (this can itself be proved by induction).
- \[Bernoulli: (1 + x)^n ≥ 1 + n x for all n ∈ N and x ≥ -1.\]
- \[Factorial bound: n! ≥ 2^{n-1} for n ≥ 1.\]
- \[Exponential vs polynomial example: 2^n > n^2 for all n ≥ 5.\]
- \[AM–GM (provable by induction in special cases): For nonnegative reals a1,...,an\]\[(a1 + ... + an)/n ≥ (a1·...·an)^{1/n}.\]
- \[Geometric sum (can be shown by induction): 1 + r + r^2 + ... + r^n = (1 - r^{n+1})/(1 - r) for r ≠ 1\]\[which gives bounds when |r| < 1.\]
Applications — Sequences and Recurrence Relations
Applications — Sequences and Recurrence Relations
Key Point: AP nth term: a_n = a_1 + (n-1)d
Overview: A sequence is an ordered list of numbers a1, a2, a3, ... A recurrence relation (or recurrence) expresses each term of a sequence in terms of previous terms. Applications in Class 11 use the Principle of Mathematical Induction to (a) prove closed-form formulas for sequences defined by a pattern or recurrence, and (b) justify formulas for sums and nth terms.
Key ideas:
- Recurrence relation: an equation like a_{n+1} = f(a_n, a_{n-1}, ..., n) together with initial condition(s) determines a sequence.
- Closed form: an explicit formula a_n in terms of n (no earlier terms). Many recurrences have simple closed forms (AP, GP, first-order linear recurrences).
- Using induction: To prove a proposed closed form, use mathematical induction: verify base case(s); assume true for n = k; prove for n = k+1 using the recurrence.
Common types:
- Arithmetic progression (AP): difference between successive terms constant.
- Geometric progression (GP): ratio between successive terms constant.
- First-order linear recurrence: a_{n+1} = p a_n + q (special cases include AP and GP).
- Fibonacci-type recurrences: a_{n+2} = a_{n+1} + a_n (needs two initial values).
Strategy for solving simple recurrences (class 11 level):
- Identify recurrence and initial condition(s).
- Try iteration: write first few terms to guess a pattern (unroll the recurrence).
- Conjecture a closed form.
- Prove the conjecture by induction (base case(s) and inductive step using recurrence).
Why induction helps: Many recurrences define a sequence step-by-step. Once you propose a closed form from pattern/iteration, induction is the rigorous tool that shows the closed form holds for all n by using the recurrence itself in the inductive step.
- Prove the nth term of an AP: If a1 = a and common difference d, recurrence is a_{n+1} = a_n + d. Conjecture a_n = a + (n-1)d. Verify base n=1, assume true for n=k, then a_{k+1} = a_k + d = (a + (k-1)d) + d = a + k d. So holds by induction.
- Prove the nth term of a GP: If a1 = a and common ratio r, recurrence is a_{n+1} = r a_n. Conjecture a_n = a r^{n-1}. Verify base, assume true for k, then a_{k+1} = r a_k = r (a r^{k-1}) = a r^k, done by induction.
- Compound interest (discrete model): If P0 is principal and each period multiplies amount by (1 + r), recurrence A_{n+1} = (1+r) A_n with A_0 = P0. By iteration A_n = P0 (1+r)^n. Use induction to prove.
- Sum of first n odd numbers: sequence of partial sums S_n = 1 + 3 + 5 + ... + (2n-1). Recurrence S_{n+1} = S_n + (2(n+1)-1). Conjecture S_n = n^2. Verify base S_1=1, assume S_k=k^2, then S_{k+1} = k^2 + 2(k+1)-1 = k^2 + 2k+1 = (k+1)^2.
- Fibonacci recurrence: F_1=1, F_2=1, F_{n+2}=F_{n+1}+F_n defines Fibonacci sequence. One can compute terms by recurrence and prove properties (e.g., sum identities) by induction. The closed-form (Binet's formula) is advanced but can be derived using characteristic equation methods.
- \[AP nth term: a_n = a_1 + (n-1)d\]
- \[AP sum: S_n = n/2 [2a_1 + (n-1)d]\]
- \[GP nth term: a_n = a_1 r^{n-1}\]
- \[GP finite sum (r != 1): S_n = a_1 (1 - r^n)/(1 - r)\]
- \[First-order linear homogeneous recurrence: a_{n+1} = p a_n => a_n = a_1 p^{n-1}\]
- \[First-order linear non-homogeneous (iteration solution idea): a_{n+1} = a_n + f(n) => a_n = a_1 + sum_{k=1}^{n-1} f(k)\]
Applications — Combinatorial and Algebraic Identities
Applications — Combinatorial and Algebraic Identities
Key Point: Sum of first n naturals: 1+2+...+n = n(n+1)/2
Overview. The Principle of Mathematical Induction is a fundamental proof technique used to establish combinatorial and algebraic identities that hold for every positive integer n. The standard induction template is:
- Base case: Verify the identity for the initial value (usually n = 1 or n = 0).
- Inductive hypothesis: Assume the identity holds for n = k.
- Inductive step: Using the hypothesis, prove the identity for n = k + 1.
Induction often pairs with combinatorial reasoning: an identity can be proved algebraically by induction or justified combinatorially by counting the same set in two ways.
Common types of identities proved by induction
- Arithmetic and power sums: formulas for 1 + 2 + ... + n, 1^2 + 2^2 + ... + n^2, 1^3 + ... + n^3, etc.
- Geometric sums: partial sums of a geometric progression.
- Binomial and combinatorial identities: e.g. sum of binomial coefficients, relations among combinations.
Typical inductive proofs (sketches)
1) Sum of first n natural numbers:
Claim: 1 + 2 + ... + n = n(n+1)/2.
Base: n=1 gives 1 = 1(2)/2. Assume true for n=k. For n=k+1 add (k+1) to both sides and simplify to get (k+1)(k+2)/2. Thus holds for k+1.
2) Sum of squares:
Claim: 1^2 + 2^2 + ... + n^2 = n(n+1)(2n+1)/6.
Proceed by base case and add (k+1)^2 to the k-case expression and simplify.
3) Geometric sum:
Claim: 1 + r + r^2 + ... + r^n = (r^{n+1}-1)/(r-1) for r != 1.
Prove by induction or multiply both sides by (r-1) and telescope; induction verifies step from k to k+1.
4) Binomial sum:
Claim: sum_{i=0}^n C(n,i) = 2^n.
A combinatorial argument: each subset of an n-element set is counted; algebraically prove by induction using Pascal's identity C(n+1,i)=C(n,i)+C(n,i-1) and summing.
5) Weighted binomial sum:
Claim: sum_{i=0}^n i C(n,i) = n 2^{n-1}.
Prove by noting i C(n,i) = n C(n-1,i-1) and summing, or use induction.
Why these are useful.
Such identities reduce repeated computation, evaluate combinatorial counts, simplify algebraic expressions, and appear in probability, algebra, number theory and real-world computations (finance, network counts, resource allocation).
- Handshake problem: Number of handshakes among n people = C(n,2) = n(n-1)/2. Proved by counting distinct unordered pairs or by induction: base n=2 gives 1, inductive step adds n new handshakes when a person joins, converting C(n,2) to C(n+1,2).
- Counting subsets: Total subsets of an n-element set = 2^n. Base n=0 gives 1; when adding one element each existing subset either contains it or not, doubling the count, giving 2^{n+1}. This also proves sum_{k=0}^n C(n,k)=2^n by counting all subsets by size.
- Sum of first n integers: 1+2+...+n = n(n+1)/2. Use base case and induction: assume true for k, add (k+1) to get next formula.
- Sum of cubes identity: 1^3+2^3+...+n^3 = (1+2+...+n)^2 = [n(n+1)/2]^2. Prove by induction: check base, assume k-case, add (k+1)^3, simplify to square of sum up to k+1.
- Geometric series in finance: Present value of an annuity with constant payment A and interest factor r per period approximates A(1 - (1+r)^{-n})/r; derive partial geometric sum by induction or algebraic manipulation.
- Weighted binomial sum: sum_{i=0}^n i C(n,i) = n 2^{n-1}. Combinatorial proof: choose one special element (n choices) and any subset of remaining n-1 elements (2^{n-1} choices).
- \[Sum of first n naturals: 1+2+...+n = n(n+1)/2\]
- \[Sum of squares: 1^2+2^2+...+n^2 = n(n+1)(2n+1)/6\]
- \[Sum of cubes: 1^3+2^3+...+n^3 = [n(n+1)/2]^2\]
- \[Geometric sum: 1+r+...+r^n = (r^{n+1}-1)/(r-1)\]\[for r != 1\]
- \[Binomial sum: sum_{k=0}^n C(n,k) = 2^n\]
- \[Pascal's identity: C(n,r) = C(n-1,r) + C(n-1,r-1)\]
Common Examples and Canonical Problems
Common Examples and Canonical Problems
Key Point: 1 + 2 + ... + n = n(n + 1)/2
Principle of Mathematical Induction (PMI) — quick reminder: To prove a statement P(n) for all integers n ≥ n0, use two steps: (1) Base case: show P(n0) is true. (2) Induction step: assume P(k) true for some k ≥ n0 (induction hypothesis) and prove P(k+1). When both hold, P(n) is true for all n ≥ n0.
Structure / checklist for every induction proof: (i) State domain and base n0. (ii) Verify base case. (iii) State induction hypothesis P(k). (iv) Starting from P(k), algebraically reach P(k+1). (v) Conclude by PMI. If the direct step is hard, consider strong induction: assume P(1),...,P(k) to prove P(k+1).
Canonical problem types and why they matter:
- Sum formulas (arithmetic, geometric, powers): common in algebra and sequence problems; induction provides a straightforward verification.
- Sum of odd/even sequences and visual proofs: induction often pairs with geometric/diagrammatic arguments (e.g., building squares).
- Divisibility problems: show expressions are divisible by a fixed integer for all n (use modular arithmetic inside induction).
- Inequalities for integers or growth comparisons (e.g., powers vs polynomials): induction often proves lower/upper bounds.
- Recurrence relations and algorithm correctness: induction (or strong induction) proves formulas or correctness for all steps.
Worked example 1 — Sum of first n natural numbers (standard model): Prove S(n)=1+2+...+n = n(n+1)/2 for n ≥ 1.
Base n=1: S(1)=1 and formula gives 1(2)/2=1. Assume true for k: 1+...+k = k(k+1)/2. Then 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2 +1) = (k+1)(k+2)/2 = (k+1)(k+2)/2, which is formula with n=k+1. Thus true for all n≥1.
Worked example 2 — Simple divisibility: Prove 7^n − 1 is divisible by 6 for all n ≥ 1.
Base n=1: 7−1=6 divisible by 6. Assume 7^k − 1 = 6m for some integer m. Then 7^{k+1} − 1 = 7·7^k − 1 = 7(7^k −1) + 6 = 7·(6m) + 6 = 6(7m+1), divisible by 6. So holds for all n by induction.
Common pitfalls: forgetting to state the base case, using an incorrect or insufficient induction hypothesis, or mixing up direct and strong induction. Also check domain: often n starts from 0 or 1—be explicit.
When to use strong induction: use when proving P(k+1) needs not only P(k) but several earlier cases (for example, statements about factorizations, representations, or recurrence with order >1). The proof pattern is the same but the hypothesis assumes P(n0),P(n0+1),...,P(k).
- Sum of first n naturals: 1 + 2 + ... + n = n(n+1)/2 — full induction proof (base n=1).
- Sum of first n odd numbers: 1 + 3 + 5 + ... + (2n−1) = n^2 — can be shown visually (square built of odd-number layers) or by induction.
- Sum of squares: 1^2 + 2^2 + ... + n^2 = n(n+1)(2n+1)/6 — induction proof by adding (k+1)^2 to the k-case.
- Sum of cubes: 1^3 + 2^3 + ... + n^3 = (n(n+1)/2)^2 — prove by induction (or square of sum formula).
- Divisibility: n^3 − n is divisible by 6 for all integers n — check base and use factorization or induction with parity cases.
- Exponential divisibility: a^n − b^n divisible by a − b for integers a,b (can be shown by induction in some formulations).
- \[1 + 2 + ... + n = n(n + 1)/2\]
- \[1^2 + 2^2 + ... + n^2 = n(n + 1)(2n + 1)/6\]
- \[1^3 + 2^3 + ... + n^3 = (n(n + 1)/2)^2\]
- \[1 + 3 + 5 + ... + (2n − 1) = n^2\]
- \[Sum of geometric series (finite): a + ar + ... + ar^{n−1} = a(1 − r^n)/(1 − r) for r ≠ 1\]
- \[Divisibility examples: 7^n − 1 is divisible by 6\]\[n^3 − n is divisible by 6 for all integers n.\]
Common Pitfalls and Error Analysis
Common Pitfalls and Error Analysis
Key Point: Standard induction template: (1) Base case: prove P(n0). (2) Inductive hypothesis: assume P(k) is true for some arbitrary k ≥ n0. (3) Inductive step: prove P(k+1) using P(k). Conclude: P(n) true for all n ≥ n0.
Principle of Mathematical Induction (PMI) is a method to prove that a statement P(n) holds for all integers n >= n0. The standard structure is: (i) prove the base case P(n0), (ii) assume P(k) holds for an arbitrary k >= n0 (inductive hypothesis), and (iii) using that assumption prove P(k+1) (inductive step). If both steps are valid, P(n) holds for every n >= n0.
Common pitfalls arise not from the method itself but from mistakes in applying it. The main types of errors are:
- Missing or insufficient base case: Failing to check the correct starting value n0 or checking only P(n0) when the inductive step needs more initial cases (e.g., proving P(k+1) uses P(k−1)). If the base case is false or inadequate, the whole proof collapses.
- Wrong domain or start point: Not specifying or using the correct domain (natural numbers, integers ≥ 2, etc.). Induction only proves for n ≥ the base value—don’t implicitly assume n starts at 1 if it should start at 0 or 2.
- Circular reasoning: Using what you want to prove inside the proof of P(k+1) in a way that presumes the result for k+1 (explicitly or implicitly).
- Illegal algebraic steps: Dividing by an expression that might be zero, cancelling terms that may vanish, or making assumptions about invertibility without verifying them for the k under consideration.
- Confusing implication with equivalence: Showing P(k) implies P(k+1) is fine, but sometimes writers quietly use equivalences that require extra justification. Make sure each algebraic manipulation preserves logical truth in the given direction.
- Improper use of strong induction: Strong (complete) induction assumes P(j) for all j ≤ k and proves P(k+1). Misapplying strong induction by assuming only some of the required earlier cases or failing to check enough base cases is a common error.
- Overlooking special small cases: The inductive step may work for k ≥ some m, not from n0, so you must verify all n in [n0, m] separately.
- Assuming uniqueness or existence without proof: Using existence of a particular object for k or k+1 without justifying it (e.g., dividing by a quantity that could be zero) leads to false conclusions.
Error analysis strategies:
- Always check the base case(s) explicitly—sometimes multiple base cases are needed.
- Test small values of n (n0, n0+1, n0+2…) to find counterexamples quickly.
- Examine algebraic manipulations for steps that require nonzero denominators or other side conditions; state these conditions where needed.
- If you suspect an error, search for the smallest counterexample and use the well-ordering principle: if a false statement has counterexamples, there is a least one—inspect how the induction breaks at that least counterexample.
- When using strong induction, list explicitly which previous cases are assumed and why they imply the next case.
- Write logical implications clearly: state assumptions and derived conclusions at every step to avoid hidden circularity.
Following these checks and being precise about domain, base cases and algebraic conditions will greatly reduce mistakes in induction proofs.
- All horses have the same color (classic false induction): Base case n=1 is true. The induction step removes one horse from an n+1 team and compares overlaps—this fails when going from n=1 to n=2 because the overlap may be empty. The missing overlap is the subtle gap in the base/step setup.
- Division by zero error: A mistaken proof that all nonzero real numbers are equal might cancel (a−b) assuming it is nonzero. If a=b, cancellation is illegal; you must check the possibility that the factor is zero before dividing.
- Insufficient base cases for recurrence: To prove a property of a sequence defined for n≥2 where the recurrence uses two previous terms, you must verify base cases for n=1 and n=2. Checking only n=1 is insufficient.
- Wrong start index: Proving P(n) for n≥1 but using formulas valid only for n≥2 (e.g., factorial expressions) — always align the start of induction with the domain of validity.
- \[Standard induction template: (1) Base case: prove P(n0). (2) Inductive hypothesis: assume P(k) is true for some arbitrary k ≥ n0. (3) Inductive step: prove P(k+1) using P(k)\]\[Conclude: P(n) true for all n ≥ n0.\]
- \[Strong induction: Assume P(j) true for all n0 ≤ j ≤ k (strong hypothesis)\]\[Prove P(k+1)\]\[Conclude P(n) for all n ≥ n0.\]
- \[Equivalence with well-ordering principle: If a property fails for some n ≥ n0\]\[then it has a least counterexample\]\[analyzing this least counterexample often yields a contradiction\]\[establishing the property for all n ≥ n0.\]
- \[Be careful with algebraic steps: If a step divides by expression E(k)\]\[add condition E(k) ≠ 0\]\[E.g.\]\[avoid implicit step: from (k−1)(something)=0 conclude something=0 without checking (k−1)≠0.\]
Connections and Further Remarks
Connections and Further Remarks
Key Point: Standard PMI (starting at n0): If P(n0) is true and for every k ≥ n0, P(k) ⇒ P(k+1), then P(n) is true for all n ≥ n0.
Overview. The Principle of Mathematical Induction (PMI) is a logical tool to prove statements P(n) for all integers n starting from some n0. The section "Connections and Further Remarks" places PMI in a wider mathematical context, shows variants, common uses and pitfalls, and links it to related principles such as strong induction and the well-ordering principle.
Key ideas and variants.
- Standard induction: verify the base case P(n0); assume P(k) true (induction hypothesis); prove P(k+1). This gives P(n) for all n ≥ n0.
- Strong (complete) induction: to prove P(n) for n ≥ n0, assume P(n0), P(n0+1), …, P(k) and prove P(k+1). Useful when P(k+1) depends on several previous values (e.g., recurrence relations, factorization).
- Multiple or shifted base cases: sometimes you must check more than one base case (e.g., P(n0), P(n0+1), …, P(n0+r)) when the induction step needs earlier ones or when recurrence steps by >1.
- Induction starting at other integers: PMI works for any starting integer n0 (not only 1). Always state the starting point.
Connections with other principles.
- Well-ordering principle (WOP): Every nonempty subset of the natural numbers has a least element. WOP, PMI and strong induction are logically equivalent: a proof using one can be converted to a proof using another.
- Proof by contradiction: WOP often converts an induction proof to a contradiction: if some n is the smallest counterexample, you derive a contradiction using smaller cases.
- Recurrence relations and construction: Induction is the natural way to prove formulas for sequences defined recursively (e.g., closed form for linear recurrences) and to justify algorithms built stepwise.
Common applications and typical patterns.
- Proving algebraic identities (sum of first n integers, sum of geometric series, binomial identities).
- Divisibility statements (e.g., 7 | (8^n ? 1) type statements).
- Combinatorial counts and tiling problems (e.g., tiling a 2 × n board uses recursion and induction).
- Number theory results that require strong induction (e.g., every integer >1 factors into primes).
Pitfalls and how to avoid them.
- Failing to check the correct base case(s). If the induction step uses values earlier than k (or leaps by more than 1), you must verify enough initial cases.
- Using a weak induction hypothesis when a strong one is needed. If P(k+1) depends on multiple earlier cases, use strong induction.
- Assuming the statement for all k less than n without justification. Always make the hypothesis explicit.
Why PMI is convincing (intuition). Think of a row of dominoes labelled n0, n0+1, n0+2, ... . The base case knocks down the first domino; the induction step ensures that whenever domino k falls it knocks down domino k+1. Therefore every domino falls. This physical picture explains the chain nature of the logical argument.
Summary. PMI is a foundational proof technique equivalent to other basic principles (WOP, strong induction). Understanding variants, choosing the right form (standard vs strong), and checking appropriate base cases are essential to correct application. The method ties closely to recursion, sequences and constructive procedures in mathematics.
- Domino effect: proving a property for all natural numbers by imagining numbered dominoes—knock down the first (base) and show each knocks the next (induction step).
- Sum of first n integers: prove 1 + 2 + … + n = n(n+1)/2 by checking n=1 and showing if formula holds for k then it holds for k+1.
- Divisibility: show 7 divides 8^n ? 1 (i.e. 8^n − 1 is divisible by 7) by base case n=1 and using (8^(k+1) −1) = 8(8^k −1) + (8−1).
- Strong induction (prime factorization): prove every integer n > 1 is either prime or a product of primes. Assume true for all integers between 2 and k and prove for k+1 by using a nontrivial factor and the induction hypothesis.
- Tiling/recurrence: number of ways to tile a 2×n board with 2×1 dominoes satisfies F(n)=F(n−1)+F(n−2); prove closed-form properties by induction or use strong induction when needed.
- \[Standard PMI (starting at n0): If P(n0) is true and for every k ≥ n0\]\[P(k) ⇒ P(k+1)\]\[then P(n) is true for all n ≥ n0.\]
- \[Strong induction: If P(n0) is true and for every k ≥ n0\]\[(P(n0) ∧ P(n0+1) ∧ … ∧ P(k)) ⇒ P(k+1)\]\[then P(n) is true for all n ≥ n0.\]
- \[Well-ordering principle (equivalent): Every nonempty subset of N has a least element.\]
- \[Common identities often proved by induction: 1 + 2 + … + n = n(n+1)/2\]\[1 + r + r^2 + … + r^{n} = (r^{n+1} − 1)/(r − 1) for r ≠ 1\]\[binomial theorem (can be proved by induction on n).\]
Exercise Types and Problem-solving Tips
Exercise Types and Problem-solving Tips
Key Point: PMI statement: If P(n0) is true and P(k) ⇒ P(k+1) for all k ≥ n0, then P(n) is true for all n ≥ n0.
Principle of Mathematical Induction (PMI) — brief: PMI is a method to prove that a statement P(n) holds for all integers n greater than or equal to some initial integer (usually 1 or 0). The standard two-step structure is:
- Base case: Verify P(n0) is true for the starting n0.
- Inductive step: Assume P(k) true for some arbitrary k ≥ n0 (the induction hypothesis) and prove P(k+1) follows.
Exercise types:
- Algebraic identities and sums: Prove formulas for finite sums (Σ n, Σ n^2, Σ n^3, geometric sums) or combinatorial identities using induction.
- Divisibility problems: Show an expression is divisible by a fixed integer for all n (use modular arithmetic within the inductive step).
- Inequalities: Prove statements like a_n ≥ b_n or monotonicity (often need a strengthened hypothesis or comparison). Typical forms: 2^n > n^2 for large n, or n! ≥ 2^{n-1}.
- Recurrence and sequence properties: Prove explicit formulas for recurrences or show properties of sequence terms (e.g., parity, bounds).
- Combinatorial/tiling problems: Use induction to prove counts of tilings, colorings, or graph properties; sometimes use strong induction.
- Strong induction / complete induction: When P(k+1) depends on several earlier cases (k, k−1,...), assume P(j) for all j ≤ k to prove P(k+1).
Typical proof pattern / tips:
- Always state the base case clearly (sometimes more than one base case is required, e.g., for recurrence of order >1).
- Write the induction hypothesis explicitly: assume P(k) (or P(1),...,P(k) in strong induction).
- Algebraically transform P(k) into P(k+1) — isolate terms, add/subtract the (k+1)-term, or multiply by a factor.
- For divisibility, reduce modulo m and use that if a ≡ 0 (mod m) then expressions built from a preserve divisibility; often factor expressions to show a multiple of m.
- For inequalities, consider strengthening the hypothesis (prove a stronger but true inequality) so the inductive step becomes easier.
- When induction seems hard, try proving an equivalent statement (e.g., use S(n) = S(n−1)+f(n) for sums, or transform inequality to a product form).
- Check small values explicitly to avoid counterexamples — sometimes the property starts from n = 2, 3 or higher.
- For combinatorial proofs, give a constructive argument that relates the (k+1)-case to earlier cases (often by partitioning configurations by a distinguished element).
Common pitfalls: forgetting to prove (or using) base case(s); assuming what you need to prove inside the inductive step; using an induction hypothesis stronger than what you actually assumed; ignoring domain restrictions (e.g., n ∈ N).
- Sum of first n natural numbers: Prove 1+2+...+n = n(n+1)/2. Base n=1: 1=1(2)/2. Assume 1+...+k = k(k+1)/2. Then 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2+1) = (k+1)(k+2)/2, so true for k+1.
- Sum of squares: Prove 1^2+2^2+...+n^2 = n(n+1)(2n+1)/6. Base n=1 holds. Assume up to k; add (k+1)^2 and simplify algebraically to reach the formula for k+1. Key step: combine rational expressions and factor.
- Divisibility: Prove 7^n - 1 is divisible by 6 for all n ≥ 1. Base: n=1 gives 6. Assume 7^k -1 ≡ 0 (mod 6). Then 7^{k+1}-1 = 7(7^k-1)+6 is ≡ 7·0 + 0 ≡ 0 (mod 6). So divisible for k+1.
- Inequality: Prove 2^n > n^2 for all n ≥ 5. Base n=5: 32>25. Assume 2^k > k^2. For k≥5, 2^{k+1} = 2·2^k > 2·k^2. Show 2·k^2 ≥ (k+1)^2 for k ≥ 5 (or verify monotonic step), which finishes the step (or refine the algebra).
- Tiling / recurrence: Number of ways to tile a 2×n board with 2×1 dominoes satisfies F_{n+1} (Fibonacci). Base cases n=1,2 checked. Assume counts up to k; for k+1, the leftmost column is either covered by a vertical domino (reduces to k) or by two horizontal dominoes (reduces to k−1). So T_{k+1}=T_k+T_{k-1}. Use induction to show solution equals Fibonacci numbers.
- \[PMI statement: If P(n0) is true and P(k) ⇒ P(k+1) for all k ≥ n0\]\[then P(n) is true for all n ≥ n0.\]
- \[Sum of first n naturals: Σ_{i=1}^n i = n(n+1)/2.\]
- \[Sum of squares: Σ_{i=1}^n i^2 = n(n+1)(2n+1)/6.\]
- \[Sum of cubes: Σ_{i=1}^n i^3 = [n(n+1)/2]^2.\]
- \[Geometric sum: Σ_{i=0}^{n} ar^i = a(1−r^{n+1})/(1−r) for r ≠ 1.\]
- \[Binomial identity often proved by induction: C(n+1\]\[k) = C(n\]\[k) + C(n\]\[k−1).\]
Key Concepts
- Principle of Mathematical Induction
- A proof method: if a statement P(n) holds for the first natural number (base case) and P(k)⇒P(k+1) for all k, then P(n) holds for every natural number n.
- Base Case (Basis Step)
- The initial verification that the statement P(n) is true for the starting value of n (often n=1 or n=0).
- Inductive Step
- The part of the proof that shows: if P(k) is true then P(k+1) is also true, for an arbitrary k in the domain.
- Induction Hypothesis
- The assumption in the inductive step that the statement P(k) is true for some arbitrary k, used to prove P(k+1).
- Weak (Simple) Induction
- The usual form of induction where one assumes P(k) to prove P(k+1).
- Strong (Complete) Induction
- An induction form where to prove P(k+1) one assumes P(1), P(2),...,P(k) (all earlier cases).
- Well-ordering Principle
- Every non-empty subset of natural numbers has a least element; equivalent to the principle of induction.
- Predicate P(n)
- A mathematical statement or property that depends on the integer n (true or false for each n).
- Domain (Natural Numbers)
- The set of integers (usually N = {0,1,2,...} or {1,2,3,...}) over which induction is applied.
- Proof by Induction
- A proof technique combining a base case and an inductive step to establish a proposition for all natural numbers.
- Starting Index
- The particular natural number at which induction begins (could be 0, 1, or any integer m).
- Multiple Base Cases
- When the inductive argument requires checking several initial values (e.g., P(1) and P(2)) before the inductive step applies.
- Double Induction (Induction on Two Variables)
- Induction carried out simultaneously on two integer variables, proving base lines and two-step inductive transitions.
- Recurrence Relation
- An equation that defines each term of a sequence in terms of preceding terms; solved or verified often by induction.
- Mathematical Statement (Proposition)
- A precise claim about numbers (or structures) intended to be proved or disproved, such as equalities or inequalities.
- Counterexample
- A specific value of n that shows the statement P(n) is false; a single counterexample disproves a universal claim.
- Inequality Induction
- Using induction to prove inequalities by checking a base case and showing the inequality is preserved from k to k+1.
- Inductive Reasoning
- The logical process of deriving a general conclusion from base cases together with a rule that extends truth from k to k+1.
- Successor
- For a natural number n, the successor is n+1; induction advances from an element to its successor.
- Structural Induction
- A form of induction used for recursively defined structures (like strings or trees), proving base structures and closure under constructors.
Practice Questions
-
State the two main steps of the Principle of Mathematical Induction. / गणितीय आगमन के सिद्धांत के दो मुख्य चरण बताइए।
Show answer
Step 1 (Base case): prove P(n₀) is true for the starting integer. Step 2 (Inductive step): assume P(k) is true and prove P(k+1) follows; then P(n) holds for all n ≥ n₀. / चरण 1 (आधार स्थिति): प्रारंभिक पूर्णांक के लिए P(n₀) सत्य सिद्ध करें। चरण 2 (आगमनात्मक चरण): मान लें P(k) सत्य है और सिद्ध करें कि P(k+1) अनुसरण करता है; तब सभी n ≥ n₀ के लिए P(n) सत्य है।
-
Explain the domino analogy for mathematical induction. / गणितीय आगमन के लिए डोमिनो उपमा समझाइए।
Show answer
If the first domino falls (base case) and each falling domino knocks down the next (inductive step), then all dominoes fall. This mirrors proving P(1) and P(k) ⇒ P(k+1) to conclude P(n) for all n. / यदि पहला डोमिनो गिरता है (आधार स्थिति) और प्रत्येक गिरता डोमिनो अगले को गिराता है (आगमनात्मक चरण), तो सभी डोमिनो गिर जाते हैं। यह P(1) और P(k) ⇒ P(k+1) सिद्ध कर सभी n के लिए P(n) निष्कर्ष निकालने जैसा है।
-
Prove by induction that 1 + 2 + ... + n = n(n+1)/2 for all n ≥ 1. / आगमन द्वारा सिद्ध कीजिए कि सभी n ≥ 1 के लिए 1 + 2 + ... + n = n(n+1)/2।
Show answer
Base: n=1 gives 1 = 1(2)/2, true. Assume 1+...+k = k(k+1)/2; then 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k+2)/2, which is the formula for k+1. Hence true for all n ≥ 1. / आधार: n=1 से 1 = 1(2)/2, सत्य। मान लें 1+...+k = k(k+1)/2; तब 1+...+k+(k+1) = k(k+1)/2 + (k+1) = (k+1)(k+2)/2, जो k+1 के लिए सूत्र है। अतः सभी n ≥ 1 के लिए सत्य।
-
Distinguish between weak (ordinary) induction and strong (complete) induction. / दुर्बल (साधारण) आगमन और प्रबल (पूर्ण) आगमन के बीच अंतर बताइए।
Show answer
In weak induction we assume only P(k) to prove P(k+1), whereas in strong induction we assume P(n₀), P(n₀+1), …, P(k) all hold to prove P(k+1). Strong induction is useful when P(k+1) depends on several earlier cases. / दुर्बल आगमन में हम P(k+1) सिद्ध करने के लिए केवल P(k) मानते हैं, जबकि प्रबल आगमन में हम P(k+1) सिद्ध करने के लिए P(n₀), P(n₀+1), …, P(k) सभी सत्य मानते हैं। प्रबल आगमन तब उपयोगी है जब P(k+1) कई पूर्व स्थितियों पर निर्भर हो।
-
Prove by induction that 7ⁿ − 1 is divisible by 6 for all n ≥ 1. / आगमन द्वारा सिद्ध कीजिए कि सभी n ≥ 1 के लिए 7ⁿ − 1, 6 से विभाज्य है।
Show answer
Base: 7¹ − 1 = 6, divisible by 6. Assume 7ᵏ − 1 = 6m; then 7^{k+1} − 1 = 7(7ᵏ − 1) + 6 = 7(6m) + 6 = 6(7m + 1), divisible by 6. Hence true for all n ≥ 1. / आधार: 7¹ − 1 = 6, 6 से विभाज्य। मान लें 7ᵏ − 1 = 6m; तब 7^{k+1} − 1 = 7(7ᵏ − 1) + 6 = 7(6m) + 6 = 6(7m + 1), 6 से विभाज्य। अतः सभी n ≥ 1 के लिए सत्य।
-
Why is the base case essential in an induction proof? / आगमन प्रमाण में आधार स्थिति आवश्यक क्यों है?
Show answer
The inductive step only shows P(k) ⇒ P(k+1); without a true base case the chain never starts, so the implication alone cannot guarantee any P(n) is true. The base case anchors the argument. / आगमनात्मक चरण केवल P(k) ⇒ P(k+1) दर्शाता है; सत्य आधार स्थिति के बिना श्रृंखला कभी शुरू नहीं होती, अतः अकेले निहितार्थ किसी P(n) के सत्य होने की गारंटी नहीं दे सकता। आधार स्थिति तर्क को आधार देती है।
-
State the well-ordering principle and its relation to induction. / सुक्रमबद्धता सिद्धांत और आगमन से इसका संबंध बताइए।
Show answer
The well-ordering principle states that every non-empty subset of natural numbers has a least element. It is logically equivalent to the principle of mathematical induction, and either can be used to prove the other. / सुक्रमबद्धता सिद्धांत कहता है कि प्राकृत संख्याओं का प्रत्येक रिक्त-रहित उपसमुच्चय एक न्यूनतम अवयव रखता है। यह गणितीय आगमन के सिद्धांत के तार्किक रूप से तुल्य है, और किसी एक से दूसरे को सिद्ध किया जा सकता है।
-
Show the inductive step for proving 2ⁿ > n² for n ≥ 5, assuming 2ᵏ > k². / 2ᵏ > k² मानते हुए n ≥ 5 के लिए 2ⁿ > n² सिद्ध करने का आगमनात्मक चरण दिखाइए।
Show answer
Assume 2ᵏ > k². Then 2^{k+1} = 2·2ᵏ > 2k². Since 2k² − (k+1)² = k² − 2k − 1 = (k−1)² − 2 ≥ 0 for k ≥ 5, we get 2k² ≥ (k+1)², so 2^{k+1} > (k+1)². / मान लें 2ᵏ > k²। तब 2^{k+1} = 2·2ᵏ > 2k²। चूँकि k ≥ 5 के लिए 2k² − (k+1)² = k² − 2k − 1 = (k−1)² − 2 ≥ 0, हमें 2k² ≥ (k+1)² मिलता है, अतः 2^{k+1} > (k+1)²।
Related Laws & Principles
Explore allFoundational laws & principles connected to this chapter — tap to open in the Laws Explorer.