Sequences of Functions
Jiří Lebl · Basic Analysis I, Ch. 7 · CC BY-SA 4.0
Pointwise convergence is not enough: the limit of continuous functions can be discontinuous, and you can't always interchange limits with integrals or derivatives. Uniform convergence is the fix. It preserves continuity, and the Weierstrass M-test detects it for series.
Pointwise vs uniform convergence
A sequence f_n converges pointwise to f if for each x, f_n(x) → f(x). It converges uniformly if sup_x |f_n(x) - f(x)| → 0. Uniform convergence means the entire graph of f_n gets close to f, not just individual points. The classic counterexample: f_n(x) = x^n on [0, 1] converges pointwise to a discontinuous function but not uniformly.
Uniform convergence preserves continuity
If each f_n is continuous and f_n → f uniformly, then f is continuous. This fails for pointwise convergence: the x^n example gives a discontinuous limit. Uniform convergence also allows interchanging limits with integrals: ∫ lim f_n = lim ∫ f_n.
Weierstrass M-test
If |f_n(x)| ≤ M_n for all x, and Σ M_n converges, then Σ f_n converges uniformly (and absolutely). The M_n are constants that bound each term independently of x.
Notation reference
| Symbol | Scheme | Meaning |
|---|---|---|
| f_n → f pointwise | f_n(x) → f(x) each x | Pointwise convergence |
| f_n ⇒ f | sup|f_n - f| → 0 | Uniform convergence |
| M_n | bound on |f_n| | Weierstrass M-test bound |
| Σ M_n < ∞ | convergent bound series | Implies uniform convergence |
Neighbors
- Ch. 2: Sequences — sequences of numbers vs sequences of functions
- Ch. 3: Series — power series are the main application
- Ch. 4: Continuous Functions — uniform convergence preserves continuity
- 🎰 Probability Ch.9 — CLT as convergence in distribution: a limit theorem for random functions
- 🤖 ML Ch.7 — Gaussian processes are distributions over functions, where convergence questions arise
- 🎛 Control Ch.7 — Fourier series: trigonometric function sequences and their convergence behavior
Translation notes
The x^n example is the canonical counterexample in every analysis course. Our numerical evaluation shows pointwise convergence (each x^n → 0 for x < 1), but the lack of uniform convergence is a theoretical fact about the supremum, not something a finite computation proves.