Convergence of Sequences and Series
In real analysis, we move beyond calculating limits to proving their existence and understanding the properties of the spaces they inhabit. This lesson focuses on the behavior of infinite sequences and the criteria for the summation of infinite series.
Sequence Convergence
A sequence in converges to if for every , there exists an such that for all :
Important Theorems for Sequences
- Monotone Convergence Theorem: Every bounded monotonic sequence in is convergent. This is a direct consequence of the Completeness Axiom (the supremum property).
- Bolzano-Weierstrass Theorem: Every bounded sequence in has a convergent subsequence. This is a foundational result for compactness.
- Cauchy Sequences: A sequence is Cauchy if its terms become arbitrarily close to each other: .
- Completeness: In , a sequence converges if and only if it is a Cauchy sequence.
Infinite Series
A series is the limit of its partial sums . If , the series converges to .
Convergence Tests
To determine if a series converges without finding its sum, we use several tests:
- Comparison Test: If and converges, then converges.
- Ratio Test: . If it converges; if it diverges.
- Root Test: . If it converges.
- Integral Test: If is positive, continuous, and decreasing, then converges if and only if converges.
Absolute vs. Conditional Convergence
- Absolute Convergence: converges absolutely if converges. Absolute convergence implies convergence.
- Conditional Convergence: converges, but diverges (e.g., the Alternating Harmonic Series ).
Rearrangements
A shocking result in analysis is Riemann’s Rearrangement Theorem: If a series is conditionally convergent, its terms can be rearranged to sum to any real value, or even to diverge. In contrast, absolutely convergent series always sum to the same value regardless of order.
Taylor Series
For a smooth function , the Taylor series at is: A function is analytic if it is represented by its Taylor series in some neighborhood. Not all smooth functions are analytic!
Python: Testing Numerical Convergence
We can use Python to estimate the limit of a series and observe the rate of convergence for the Ratio Test.
import math
def series_sum(func, n_terms):
total = 0
for n in range(1, n_terms + 1):
total += func(n)
return total
# Harmonic series (divergent)
harmonic = lambda n: 1/n
# Geometric series (convergent) 1/2^n
geometric = lambda n: 1/(2**n)
print(f"Partial sum of harmonic (1000 terms): {series_sum(harmonic, 1000)}")
print(f"Partial sum of geometric (1000 terms): {series_sum(geometric, 1000)}")
# Note how the geometric series quickly approaches 1.0
Significance
Sequences and series allow us to define transcendental functions like , , and using only basic arithmetic operations. They are the language of approximation and numerical methods, forming the bridge between discrete logic and continuous reality.