Sequences and Series
Sequences and series apply the limit concept to infinite lists and infinite sums. A sequence asks whether the terms settle toward a value. A series asks whether the accumulated partial sums settle toward a finite total. These are related questions, but they are not the same question.
Infinite series are essential for approximating functions, solving differential equations, estimating errors, and understanding power series. The work is mostly diagnostic: identify the structure of the terms, choose an appropriate convergence test, and state exactly what the test proves.
Definitions
A sequence is an ordered list
It converges to if
If no finite limit exists, the sequence diverges.
An infinite series is
Its th partial sum is
The series converges to if the sequence of partial sums converges to :
A geometric series has form
It converges when and then
A -series is
It converges if and diverges if .
Key results
The nth-term test for divergence says:
The converse is false. If , the series may converge or diverge. For example, diverges even though .
The Integral Test applies when and is positive, continuous, and decreasing for large :
converge or diverge together.
The Direct Comparison Test uses inequalities. If and converges, then converges. If and diverges, then diverges.
The Limit Comparison Test says that for positive terms, if
where , then and have the same convergence behavior.
The Alternating Series Test applies to
when , eventually, and . The series converges, and the error after terms satisfies
The Ratio Test examines
If , the series converges absolutely. If or , it diverges. If , the test is inconclusive.
Absolute convergence means converges. Conditional convergence means converges but diverges. Absolute convergence is stronger and allows more algebraic manipulation.
The Root Test is another absolute convergence test:
If , the series converges absolutely. If , it diverges. If , the test is inconclusive. The Root Test is especially useful when the whole term is raised to the th power, such as .
Telescoping series collapse after partial fraction decomposition or cancellation. For example,
Taking gives a sum of . Telescoping is one of the few cases where the partial sums can be written explicitly.
The distinction between convergence of terms and convergence of sums is the most important conceptual point. A convergent series must have terms that go to zero because the partial sums cannot settle if the added pieces stay large. But small pieces can still accumulate forever. The harmonic series is the standard example: terms shrink to zero, but the accumulated sum grows without bound.
Series tests should be chosen from the shape of . Rational functions of often compare to -series. Factorials and exponentials often suggest the Ratio Test. Alternating signs suggest checking absolute convergence first, then the Alternating Series Test if absolute convergence fails. Logarithms may require the Integral Test or comparison with known slow-growth benchmarks.
Error estimates matter when a series is used for approximation. For a convergent alternating series satisfying the test conditions, the first omitted term bounds the error. For positive series, bounding the remainder often requires an integral estimate or comparison to a geometric tail. A convergence statement alone does not say how many terms are needed for a desired accuracy.
The Integral Test also gives remainder bounds. If is positive, continuous, decreasing, and , then for the remainder
we have
This turns an infinite tail into computable improper integrals. It is especially useful for -series and other positive decreasing terms.
Index shifts do not affect convergence, but they do affect formulas. The series has first term , while has first term . Before applying a memorized geometric formula, identify the starting index and first term. A wrong index often changes the sum even though convergence behavior is unchanged.
Series can be combined safely under convergence hypotheses. The sum of two convergent series converges, and scalar multiples preserve convergence. But subtracting two divergent series or rearranging conditionally convergent series can be dangerous. Absolute convergence is the condition that makes rearrangements behave predictably.
Monotone bounded sequences provide another foundational result. If a sequence is increasing and bounded above, it converges. If it is decreasing and bounded below, it converges. This theorem often appears before series because partial sums of positive series are increasing; convergence then depends on whether those partial sums are bounded above by a finite number in the real line.
That viewpoint links sequence limits directly to series convergence.
Visual
| Test | Best for | Concludes convergence when | Inconclusive case |
|---|---|---|---|
| nth-term | quick divergence | never proves convergence | |
| geometric | none | ||
| -series | none | ||
| comparison | positive terms | bounded by convergent benchmark | bad comparison |
| alternating | alternating decreasing terms | monotonicity or limit fails | |
| ratio | factorials and exponentials |
Worked example 1: choose tests for two positive series
Problem. Determine whether each series converges:
Method for the first series.
- For large , compare leading powers:
- Use limit comparison with :
- Simplify by dividing by :
- Since and converges, the first series converges.
Method for the second series.
- For large ,
- Use limit comparison with :
- Since diverges, the second series diverges.
Checked answer. The first series converges by comparison with a -series with . The second diverges by comparison with the harmonic series.
Worked example 2: alternating series and error estimate
Problem. Approximate
using the first four terms, and bound the error.
Method.
- Identify
- Check the conditions. The terms are positive, decreasing, and
Therefore the Alternating Series Test applies.
- Compute the fourth partial sum:
- Use a common denominator :
- The alternating error estimate gives
Checked answer. The approximation is , with error at most . The exact sum lies between and .
If a smaller error is needed, choose so that
For example, to guarantee error below , solve
This gives
so terms are enough. The alternating structure gives a practical stopping rule without knowing the exact infinite sum.
This is why alternating series are valuable computationally. Even when the exact sum is unknown, the next term gives a certified error bound, so the approximation can be matched to a required tolerance.
Code
def partial_sum(term, n):
return sum(term(k) for k in range(1, n + 1))
alt = lambda n: (-1)**(n - 1) / (n*n)
for n in [4, 10, 100]:
print(n, partial_sum(alt, n))
Common pitfalls
- Using the nth-term test backward. does not prove convergence.
- Forgetting positivity conditions for comparison and integral tests.
- Applying the Alternating Series Test without checking that decreases to .
- Treating ratio test result as convergence. It is inconclusive.
- Confusing a sequence with the series .
- Ignoring absolute convergence when rearranging or combining series.
- Comparing to the wrong benchmark power. Leading-order behavior usually decides rational terms.
Connections
- Limits and Continuity: sequence convergence is a limit at infinity.
- Integration Techniques and Improper Integrals: the integral test links series and improper integrals.
- Power Series and Taylor Polynomials: power series are series whose terms contain powers of a variable.
- Exponential Log and Inverse Functions: growth rates guide comparison tests.