FMAT pure1 series and induction Flashcards
What is the sum of the first n natural numbers?
The sum is given by:
Σr (from r = 1 to n) = n(n + 1) / 2
How is the sum of the first n natural numbers derived using triangle numbers?
The nth triangle number T_n forms a triangular array of dots.
Two such triangles form a rectangle with rows n and columns n + 1.
T_n = n(n + 1) / 2
What is the sum of the squares of the first n natural numbers?
The sum is given by:
Σr² (from r = 1 to n) = n(n + 1)(2n + 1) / 6
Example: Find Σr² (from r = 1 to 50).
Σr² = (50 * 51 * 101) / 6 = 42925
What is the sum of the cubes of the first n natural numbers?
The sum is given by:
Σr³ (from r = 1 to n) = [n(n + 1) / 2]²
Example: Find Σr³ (from r = 1 to 10).
Σr³ = [(10 * 11) / 2]² = 55² = 3025
What is the method of differences?
This method expresses a series as differences of terms, canceling intermediate terms to simplify the sum.
Example: Simplify Σ (r(r + 1)) for r = 1 to n.
- Expand r(r + 1) = r² + r.
- Use standard results for Σr² and Σr:
Σr(r + 1) = Σr² + Σr = [n(n + 1)(2n + 1) / 6] + [n(n + 1) / 2].
How are partial fractions used to sum series?
Decompose a rational expression into partial fractions, then use the method of differences to simplify.
Example: Sum Σ (2 / [(r + 1)(r + 2)]) for r = 1 to n.
- Decompose: 2 / [(r + 1)(r + 2)] = 2 / (r + 1) - 2 / (r + 2).
- Apply method of differences:
Σ = 1 - 2/(n + 2).
What is a convergent series?
A series is convergent if its sum approaches a finite limit as the number of terms approaches infinity.
Example: Find the sum to infinity of Σ (2 / [(r + 1)(r + 2)]).
Using the sum for n terms: 1 - 2/(n + 2).
As n → ∞, 2/(n + 2) → 0.
Sum to infinity = 1
How do you ensure correct cancellation in the method of differences?
Carefully identify and retain any remaining terms after cancellation, especially at the beginning and end of the series.
What is proof by induction?
A mathematical proof method used to show that a statement is true for all positive integers.
What are the three essential steps in proof by induction?
- Prove the statement is true for a starting value (e.g., n = 1).
- Assume it is true for n = k.
- Prove it is true for n = k + 1.
Example: Prove Σr (from r = 1 to n) = n(n + 1) / 2 using induction.
- Base case (n = 1): LHS = 1; RHS = 1(1 + 1)/2 = 1. True.
- Assume true for n = k: Σr = k(k + 1)/2.
- For n = k + 1: Σr = [k(k + 1)/2] + (k + 1).
Simplify to (k + 1)(k + 2)/2. True by induction.
What is a counterexample in proofs?
A single example showing that a statement is false, disproving it.
How is proof by induction used for divisibility?
- Prove the base case satisfies divisibility.
- Assume true for n = k.
- Show that if true for n = k, it is true for n = k + 1.
Example: Prove 2^(n+1) - 1 is divisible by 3 for n ≥ 1.
- Base case (n = 1): 2^(1+1) - 1 = 3. Divisible by 3.
- Assume true for n = k: 2^(k+1) - 1 = 3m.
- For n = k + 1: 2^(k+2) - 1 = 2 * 2^(k+1) - 1.
= 2(3m + 1) - 1 = 3(2m) + 1. True.
How is proof by induction applied to matrices?
- Prove the result holds for n = 1.
- Assume it holds for n = k.
- Show it holds for n = k + 1 by matrix multiplication.
Example: Prove A^n = [[1, 2n], [0, 2^n]] using induction.
- Base case (n = 1): A = [[1, 2], [0, 2]]. True.
- Assume true for n = k: A^k = [[1, 2k], [0, 2^k]].
- For n = k + 1: A^(k+1) = A^k * A.
Verify: [[1, 2k + 2], [0, 2^(k+1)]] matches. True.
How is proof by induction used for sequences?
- Prove the sequence formula is true for the first term.
- Assume it is true for the k-th term.
- Prove it is true for the (k + 1)-th term using the sequence definition.
Example: Prove u_n = 3(4^(n-1)) - 1 satisfies the recurrence u_(n+1) = 4u_n + 3.
- Base case (n = 1): u_1 = 3(4^0) - 1 = 2. Matches.
- Assume true for n = k: u_k = 3(4^(k-1)) - 1.
- For n = k + 1: u_(k+1) = 4[3(4^(k-1)) - 1] + 3.
Simplifies to 3(4^k) - 1. True.
What are common errors in proof by induction?
- Skipping the base case.
- Incorrectly assuming n = k implies n = k + 1 without proof.
- Failing to clearly state the inductive step conclusion.
Why does proof by induction work?
It establishes a domino effect: proving the base case and the inductive step ensures the result holds for all positive integers.