Mathematical Induction Problems
[MathDefinition title="Mathematical Induction"] Mathematical induction is a method of proving that a statement P(n) is true for all natural numbers n. It involves two steps:
- Base case: Verify that P(1) is true
- Inductive step: Assume P(k) is true and prove P(k+1) is true [/MathDefinition]
[MathDefinition title="Principle of Mathematical Induction"] If P(1) is true and P(k) βΉ P(k+1) is true for all natural numbers k, then P(n) is true for all natural numbers n. [/MathDefinition]
[MathKeyFormula title="Steps for Mathematical Induction"] Step 1: Verify P(1) is true Step 2: Assume P(k) is true for some arbitrary natural number k (Inductive Hypothesis) Step 3: Using the inductive hypothesis, prove P(k+1) is true Step 4: Conclude that P(n) is true for all natural numbers n by the principle of mathematical induction [/MathKeyFormula]
[MathNote title="Common Mistakes to Avoid"]
- Always verify the base case completely
- Clearly state the inductive hypothesis
- Use the inductive hypothesis in proving P(k+1)
- Don't assume what you're trying to prove
- Show that P(k+1) follows logically from P(k) [/MathNote]
[MathExample title="Example 1: Sum of Natural Numbers"] Problem: Prove that 1 + 2 + 3 + ... + n = n(n+1)/2 for all natural numbers n.
Solution: Let P(n): 1 + 2 + 3 + ... + n = n(n+1)/2
Step 1: Base case (n = 1) LHS = 1 RHS = 1(1+1)/2 = 1(2)/2 = 1 LHS = RHS, so P(1) is true.
Step 2: Inductive hypothesis Assume P(k) is true for some k β N: 1 + 2 + 3 + ... + k = k(k+1)/2
Step 3: Prove P(k+1) We need to prove: 1 + 2 + 3 + ... + k + (k+1) = (k+1)(k+2)/2
LHS = [1 + 2 + 3 + ... + k] + (k+1) = k(k+1)/2 + (k+1) [using inductive hypothesis] = (k+1)[k/2 + 1] = (k+1)(k+2)/2 = RHS
Step 4: Conclusion Since P(1) is true and P(k) βΉ P(k+1), by mathematical induction, P(n) is true for all n β N. [/MathExample]
[MathExample title="Example 2: Geometric Series"] Problem: Prove that 1 + 3 + 3Β² + ... + 3βΏβ»ΒΉ = (3βΏ β 1)/2 for all n β N.
Solution: Let P(n): 1 + 3 + 3Β² + ... + 3βΏβ»ΒΉ = (3βΏ β 1)/2
Step 1: Base case (n = 1) LHS = 3β° = 1 RHS = (3ΒΉ β 1)/2 = 2/2 = 1 LHS = RHS, so P(1) is true.
Step 2: Inductive hypothesis Assume P(k) is true: 1 + 3 + 3Β² + ... + 3α΅β»ΒΉ = (3α΅ β 1)/2
Step 3: Prove P(k+1) We need to prove: 1 + 3 + 3Β² + ... + 3α΅ = (3α΅βΊΒΉ β 1)/2
LHS = [1 + 3 + 3Β² + ... + 3α΅β»ΒΉ] + 3α΅ = (3α΅ β 1)/2 + 3α΅ [using inductive hypothesis] = (3α΅ β 1 + 2Β·3α΅)/2 = (3Β·3α΅ β 1)/2 = (3α΅βΊΒΉ β 1)/2 = RHS
Step 4: Conclusion By mathematical induction, P(n) is true for all n β N. [/MathExample]
[MathExample title="Example 3: Divisibility"] Problem: Prove that 4βΏ + 15n β 1 is divisible by 9 for all n β N.
Solution: Let P(n): 4βΏ + 15n β 1 is divisible by 9
Step 1: Base case (n = 1) 4ΒΉ + 15(1) β 1 = 4 + 15 β 1 = 18 18 is divisible by 9, so P(1) is true.
Step 2: Inductive hypothesis Assume P(k) is true: 4α΅ + 15k β 1 = 9m for some integer m
Step 3: Prove P(k+1) We need to show 4α΅βΊΒΉ + 15(k+1) β 1 is divisible by 9
4α΅βΊΒΉ + 15(k+1) β 1 = 4Β·4α΅ + 15k + 15 β 1 = 4Β·4α΅ + 15k + 14
From inductive hypothesis: 4α΅ = 9m β 15k + 1
= 4(9m β 15k + 1) + 15k + 14 = 36m β 60k + 4 + 15k + 14 = 36m β 45k + 18 = 9(4m β 5k + 2)
This is divisible by 9.
Step 4: Conclusion By mathematical induction, 4βΏ + 15n β 1 is divisible by 9 for all n β N. [/MathExample]
[MathExample title="Example 4: Product Formula"] Problem: Prove that (1 + 1/1)(1 + 1/2)(1 + 1/3)...(1 + 1/n) = n + 1 for all n β N.
Solution: Let P(n): (1 + 1/1)(1 + 1/2)(1 + 1/3)...(1 + 1/n) = n + 1
Step 1: Base case (n = 1) LHS = (1 + 1/1) = 2 RHS = 1 + 1 = 2 LHS = RHS, so P(1) is true.
Step 2: Inductive hypothesis Assume P(k) is true: (1 + 1/1)(1 + 1/2)(1 + 1/3)...(1 + 1/k) = k + 1
Step 3: Prove P(k+1) We need to prove: (1 + 1/1)(1 + 1/2)...(1 + 1/k)(1 + 1/(k+1)) = k + 2
LHS = [(1 + 1/1)(1 + 1/2)...(1 + 1/k)] Γ (1 + 1/(k+1)) = (k + 1) Γ (1 + 1/(k+1)) [using inductive hypothesis] = (k + 1) Γ ((k+1+1)/(k+1)) = (k + 1) Γ ((k+2)/(k+1)) = k + 2 = RHS
Step 4: Conclusion By mathematical induction, P(n) is true for all n β N. [/MathExample]