Sequences and series give you a framework for understanding how values change based on their position in a pattern. Whether it's a simple list of numbers growing by the same amount each time or a more complex formula-driven pattern, these tools let you analyze, predict, and calculate efficiently.
Sequences and Series
Generation of initial sequence terms
To generate the first several terms of a sequence, you need to identify the rule governing the pattern and then apply it repeatedly.
- Arithmetic sequences have a constant difference between consecutive terms, called the common difference (). You get each new term by adding to the previous one.
- Example: 2, 5, 8, 11, ... has a common difference of 3
- Geometric sequences have a constant ratio between consecutive terms, called the common ratio (). You get each new term by multiplying the previous one by .
- Example: 3, 6, 12, 24, ... has a common ratio of 2
- Other sequences follow their own specific formula or recursive rule.
- Example: The Fibonacci sequence (0, 1, 1, 2, 3, 5, ...) defines each term as the sum of the two preceding terms
The key first step on any problem is figuring out which type of sequence you're dealing with. Check for a constant difference first, then a constant ratio, then look for another pattern.
Derivation of nth term formula
Instead of listing out every term to find, say, the 50th value, you can derive a formula that jumps straight to any term.
For arithmetic sequences:
where is the nth term, is the first term, is the term number, and is the common difference.
- Example: For the sequence 3, 7, 11, 15, ..., the first term is 3 and the common difference is 4. So , which simplifies to . The 20th term would be .
For geometric sequences:
where is the first term and is the common ratio.
- Example: For the sequence 2, 6, 18, 54, ..., the first term is 2 and the common ratio is 3. So . The 6th term would be .
For other sequences, look at the relationship between the term number and the term value, then write a formula that captures it.
- Example: For the sequence 1, 4, 9, 16, ..., each term equals its position squared: .
A formula like these that gives you the nth term directly (without needing previous terms) is called a closed-form expression.

Application of factorial notation
Factorial notation is a shorthand for multiplying a positive integer by every positive integer below it:
- , and
- by definition (this comes up often, so just memorize it)
Factorials appear in sequence formulas, especially later when you get to the Binomial Theorem. Here's a quick example of a sequence that uses them:
- If , find :
- Calculate the numerator:
- Calculate the denominator:
- Divide:
Factorials grow extremely fast. By , you're already in the millions. This rapid growth matters when you're comparing factorial-based sequences to exponential ones.
Calculation of partial sums
A partial sum is the sum of a specific number of terms from the beginning of a sequence. The notation means "the sum of the first terms."
For arithmetic sequences:
This is equivalent to:
The second form is useful when you don't already know .
- Example: Find the sum of the first 10 terms of 2, 5, 8, 11, ...
- Identify: , ,
- Find :
- Apply the formula:
For geometric sequences (when ):
If , every term is the same, so .
- Example: Find the sum of the first 5 terms of 3, 6, 12, 24, ...
- Identify: , ,
- Apply the formula:

Expression of series in summation notation
Summation notation (also called sigma notation) is a compact way to write the sum of many terms without listing them all out:
The variable is the index. It starts at the bottom value (here, 1) and counts up to the top value (). For each value of , you evaluate the expression and add the results together.
Arithmetic series example: Express 2 + 5 + 8 + 11 + ... + 29 in summation notation.
- The first term is 2, the common difference is 3, and there are 10 terms.
- The general term is
- In summation notation:
Geometric series example: Express 3 + 6 + 12 + 24 + 48 in summation notation.
- The first term is 3, the common ratio is 2, and there are 5 terms.
- The general term is
- In summation notation:
To read summation notation, just plug in each value of one at a time and add up the results. That's all it's doing.
Behavior of Infinite Sequences and Series
When a sequence or series extends forever, the big question is: does it settle down to a finite value, or does it keep growing without bound?
- Convergence means the terms of a sequence (or the partial sums of a series) approach a specific finite number as gets larger and larger. That number is called the limit.
- Divergence means no such finite limit exists. The values either grow without bound, oscillate, or otherwise fail to settle.
For example, the sequence converges to 0 because the terms get closer and closer to 0 as increases. But the sequence diverges because the terms grow forever.
An infinite series is the sum of all terms in an infinite sequence. Some infinite series converge to a finite sum (like an infinite geometric series with ), while others diverge. You'll work more with infinite geometric series later in this unit.