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.