← back to real analysis

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.

x f f_1 f_2 f_3 Uniform convergence: all f_n eventually fit inside the ε-tube around f.

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.

Scheme

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.

Scheme

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.

Scheme

Notation reference

Symbol Scheme Meaning
f_n → f pointwisef_n(x) → f(x) each xPointwise convergence
f_n ⇒ fsup|f_n - f| → 0Uniform convergence
M_nbound on |f_n|Weierstrass M-test bound
Σ M_n < ∞convergent bound seriesImplies uniform convergence
Neighbors

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.