Welcome to Sequences and Series!
In this chapter, we are going to explore patterns. Whether it's the way a sunflower grows, how interest builds up in a bank account, or how a ball bounces, sequences and series help us turn these patterns into predictable math. Don't worry if this seems a bit abstract at first; once you see the "rules" behind the patterns, it becomes a lot like solving a puzzle!
1. The Basics: What is a Sequence?
A sequence is simply a list of numbers in a specific order. Each number in the list is called a term.
- We use \(n\) to represent the position of the term (1st, 2nd, 3rd...).
- We use \(u_n\) or \(x_n\) to represent the value of the term at that position.
The nth term formula: This is like a "term machine." If you plug in the position \(n\), the formula gives you the value. For example, if \(u_n = 2n + 1\), the first term (\(n=1\)) is \(2(1) + 1 = 3\).
Recurrence Relations
Sometimes, a term is defined by the one before it. This is called a recurrence relation, usually written as \(x_{n+1} = f(x_n)\). It's like a set of instructions: "To get the next number, do this to the current one."
Example: \(x_{n+1} = 2x_n - 3\). If the first term \(x_1 = 5\), then:
\(x_2 = 2(5) - 3 = 7\)
\(x_3 = 2(7) - 3 = 11\)
Finding the Limit
Some sequences get closer and closer to a specific number as they go on forever. This number is called the limit (\(L\)). If a sequence has a limit, then as \(n\) gets very large, \(x_n\) and \(x_{n+1}\) become essentially the same value (\(L\)).
Step-by-step to find the limit \(L\):
1. Replace both \(x_{n+1}\) and \(x_n\) with the letter \(L\).
2. Solve the resulting equation for \(L\).
Example: For \(x_{n+1} = 0.5x_n + 4\), set \(L = 0.5L + 4\). Solving this gives \(0.5L = 4\), so \(L = 8\).
2. Arithmetic Series
An arithmetic sequence is one where you add (or subtract) the same amount every time. This fixed amount is called the common difference (\(d\)).
Analogy: Think of a ladder. Each rung is exactly the same distance from the last one. That distance is \(d\).
Important Formulas
- The nth term: \(u_n = a + (n-1)d\)
(where \(a\) is the first term). - The Sum of the first \(n\) terms (\(S_n\)):
\(S_n = \frac{n}{2}[2a + (n-1)d]\)
Sigma Notation (\(\sum\))
The symbol \(\sum\) is just a fancy way of saying "add them all up."
\(\sum_{r=1}^{n} u_r\) means: "Start at \(r=1\), plug it into the formula, then do the same for \(r=2\), \(r=3\), all the way up to \(n\), and add all the results together."
3. Geometric Series
In a geometric sequence, you multiply by the same amount each time. This is called the common ratio (\(r\)).
Analogy: Think of a bouncing ball that reaches 80% of its previous height each time. Here, \(r = 0.8\).
Important Formulas
- The nth term: \(u_n = ar^{n-1}\)
- The Sum of a finite series (\(S_n\)):
\(S_n = \frac{a(1-r^n)}{1-r}\) or \(S_n = \frac{a(r^n-1)}{r-1}\)
Sum to Infinity (\(S_\infty\))
If the common ratio \(r\) is between \(-1\) and \(1\) (written as \(|r| < 1\)), the terms get smaller and smaller, eventually shrinking toward zero. We call this a convergent series. Even though there are infinitely many terms, they add up to a specific, finite total!
The Formula: \(S_\infty = \frac{a}{1-r}\)
Common Mistake: Students often try to find a sum to infinity for series where \(r\) is greater than 1 (like 2, 4, 8, 16...). You can't! That series just grows forever; it doesn't "settle down" to a limit.
Key Takeaway: Arithmetic = Adding; Geometric = Multiplying. Sum to infinity only works if the terms are "shrinking" (\(|r| < 1\)).4. Binomial Expansion
The Binomial Expansion is a fast way to expand brackets like \((1+x)^n\) or \((a+b)^n\) without having to multiply them manually for hours.
Prerequisite Tools: Factorials and Combinations
- Factorial (\(n!\)): Multiply the number by every whole number below it down to 1.
Example: \(4! = 4 \times 3 \times 2 \times 1 = 24\). - Combinations \(\binom{n}{r}\): This tells us how many ways we can choose \(r\) items from \(n\). You can find this button on your calculator (usually \(nCr\)).
The Expansion Formula
For \((1+x)^n\), where \(n\) is a positive integer:
\((1+x)^n = 1 + nx + \frac{n(n-1)}{2!}x^2 + \frac{n(n-1)(n-2)}{3!}x^3 + ... + x^n\)
Using Pascal’s Triangle:
If \(n\) is small, you can use Pascal's Triangle to find the coefficients (the numbers in front of the \(x\) terms):
Row 0: 1
Row 1: 1, 1
Row 2: 1, 2, 1
Row 3: 1, 3, 3, 1
Row 4: 1, 4, 6, 4, 1
Expanding \((a+b)^n\)
When expanding \((a+b)^n\), the powers of \(a\) decrease while the powers of \(b\) increase. The powers in each term must always add up to \(n\).
Example for \((a+b)^3\):
Using Row 3 of Pascal's Triangle (1, 3, 3, 1):
\(1(a^3) + 3(a^2b^1) + 3(a^1b^2) + 1(b^3)\)
Did you know? The Binomial Expansion is used in probability to calculate the chances of specific outcomes, like flipping a coin multiple times!
Key Takeaway: Use \(\binom{n}{r}\) or Pascal's Triangle to get the coefficients, then carefully apply the powers to each part of the bracket.Summary Checklist
- Can you find the limit \(L\) of a recurrence relation?
- Do you know when to use the arithmetic sum vs. the geometric sum?
- Is the common ratio \(|r| < 1\) before you try to find \(S_\infty\)?
- When doing binomial expansion, did you remember to square/cube the entire term (e.g., \((2x)^2 = 4x^2\), not \(2x^2\))?
Great job! Sequences and series are all about spotting the pattern and picking the right tool from your formula kit. Keep practicing, and these patterns will become second nature.