Continuity - Content Verification
Raw Database Data
| ID | Page ID | Section | Type | Contributor ID | Partition Content | Partition Order | Created At |
|---|---|---|---|---|---|---|---|
| 5890 | 1147 | content | create | 1 | A function is continuous if small changes in input produce small changes in output — the function has no jumps, tears, or explosions. This intuition, refined into the $\varepsilon$-$\delta$ definition by Cauchy and Weierstrass, is the single most important concept in analysis. Continuity is the condition under which [limits](/page/Limit) commute with function evaluation ($\lim f(x_n) = f(\lim x_n)$), and it is the property preserved by all the fundamental operations: composition, pointwise limits (under uniform convergence), and passage to sub- and quotient spaces. In [topology](/page/Topology), continuity is the structure-preserving map — the morphism of the category of topological spaces — defined by the condition that preimages of [open sets](/page/Open%20Set) are open.
This page develops continuity from the $\varepsilon$-$\delta$ definition through the topological formulation, the preservation theorems (images of compact and connected sets), uniform continuity and the Heine-Cantor theorem, Lipschitz continuity, and the characterisation of homeomorphisms.
[motivation]
## Motivation
### The Informal Idea
A function $f: \mathbb{R} \to \mathbb{R}$ is continuous at $a$ if the graph has no break at $x = a$ — one can draw the graph near $a$ without lifting the pen. More precisely, one can make $f(x)$ as close to $f(a)$ as desired by taking $x$ sufficiently close to $a$. This "as close as desired" is the key: the function $f(x) = x^2$ is continuous at $a = 2$ because $|x^2 - 4|$ can be made as small as we like by restricting $|x - 2|$.
The Heaviside function $H(x) = 0$ for $x < 0$ and $H(x) = 1$ for $x \ge 0$ is not continuous at $0$: no matter how close $x$ is to $0$ from the left, $H(x) = 0$, which is distance $1$ from $H(0) = 1$. The output "jumps" — the $\varepsilon$-$\delta$ condition fails for any $\varepsilon < 1$.
### From Pointwise to Global: Three Definitions
The $\varepsilon$-$\delta$ definition captures continuity at a single point. But analysis needs a *global* notion — continuity on an entire domain — and topology needs a definition that works without any metric. These requirements lead to three equivalent formulations:
1. **$\varepsilon$-$\delta$ (metric):** for every $x$ and every $\varepsilon > 0$, there exists $\delta > 0$ with $d(x, y) < \delta \implies d(f(x), f(y)) < \varepsilon$.
2. **Sequential (metric):** $x_n \to x$ implies $f(x_n) \to f(x)$.
3. **Topological:** preimages of [open sets](/page/Open%20Set) are open.
The three formulations are equivalent in metric spaces. The topological definition is the most general and the one that extends to spaces with no distance function. The $\varepsilon$-$\delta$ definition is the most concrete and the one used in computations. The sequential definition is the most convenient for proofs.
[/motivation]
## Definition
Continuity at a point means that the function's value can be controlled by controlling the input. Continuity on a domain means continuity at every point.
[definition:Continuous Function At A Point]
Let $(X, d_X)$ and $(Y, d_Y)$ be metric spaces and let $f: X \to Y$. The function $f$ is **continuous at** $a \in X$ if for every $\varepsilon > 0$ there exists $\delta > 0$ such that
\begin{align*}
d_X(x, a) < \delta \implies d_Y(f(x), f(a)) < \varepsilon.
\end{align*}
[/definition]
[definition:Continuous Function]
The function $f: X \to Y$ is **continuous** (or continuous on $X$) if it is continuous at every point $a \in X$.
Equivalently, in terms of the [topologies](/page/Topology) induced by the metrics: $f$ is continuous if and only if $f^{-1}(V)$ is [open](/page/Open%20Set) in $X$ for every open $V \subseteq Y$.
[/definition]
The equivalence of the pointwise and topological definitions is a fundamental exercise: if $f$ is $\varepsilon$-$\delta$ continuous at every point, then the preimage of any open $V$ is open (for each $x \in f^{-1}(V)$, find $\varepsilon > 0$ with $B(f(x), \varepsilon) \subseteq V$, then find $\delta > 0$ with $f(B(x, \delta)) \subseteq B(f(x), \varepsilon) \subseteq V$, so $B(x, \delta) \subseteq f^{-1}(V)$). Conversely, if preimages of open sets are open, then for any $a$ and $\varepsilon > 0$, the set $f^{-1}(B(f(a), \varepsilon))$ is open and contains $a$, so it contains some $B(a, \delta)$.
[example:Polynomial Continuity]
Every polynomial $p: \mathbb{R} \to \mathbb{R}$ is continuous. It suffices to show that $f(x) = x$ (the identity) and $g(x) = c$ (constants) are continuous, and that continuous functions are closed under addition and multiplication. The identity is continuous: $|x - a| < \delta \implies |f(x) - f(a)| = |x - a| < \delta$, so take $\delta = \varepsilon$. Constants are continuous: $|g(x) - g(a)| = 0 < \varepsilon$ for all $\delta$. The algebra of limits (sum and product rules) then gives continuity of any polynomial.
[/example]
## The Sequential Characterisation
In metric spaces, continuity has a clean sequential reformulation that avoids the $\varepsilon$-$\delta$ quantifiers entirely. This characterisation is the tool of choice for most proofs involving continuity, because manipulating sequences is generally easier than managing $\varepsilon$-$\delta$ estimates.
### Statement and Proof
A function $f: X \to Y$ between metric spaces is continuous at $a$ if and only if $f(x_n) \to f(a)$ whenever $x_n \to a$. Equivalently: $f$ is continuous if and only if it preserves convergent sequences.
The forward direction is immediate: if $f$ is $\varepsilon$-$\delta$ continuous at $a$ and $x_n \to a$, then for any $\varepsilon > 0$, choose $\delta$ from the definition and $N$ with $d(x_n, a) < \delta$ for $n \ge N$; then $d(f(x_n), f(a)) < \varepsilon$ for $n \ge N$, so $f(x_n) \to f(a)$.
The reverse uses contrapositive: if $f$ is not continuous at $a$, then there exists $\varepsilon_0 > 0$ such that for every $\delta > 0$, some $x$ with $d(x, a) < \delta$ satisfies $d(f(x), f(a)) \ge \varepsilon_0$. Taking $\delta = 1/n$ gives a sequence $x_n$ with $x_n \to a$ but $d(f(x_n), f(a)) \ge \varepsilon_0$ for all $n$, so $f(x_n) \not\to f(a)$.
### Using the Sequential Characterisation
The sequential characterisation is the standard tool for proving discontinuity. To show $f$ is discontinuous at $a$, exhibit a single sequence $x_n \to a$ with $f(x_n) \not\to f(a)$.
[example:Discontinuity Of The Topologist's Sine]
Define $f: \mathbb{R} \to \mathbb{R}$ by $f(x) = \sin(1/x)$ for $x \neq 0$ and $f(0) = 0$. The function $f$ is discontinuous at $0$: the sequence $x_n = 1/(2\pi n + \pi/2) \to 0$ satisfies $f(x_n) = \sin(2\pi n + \pi/2) = 1$ for all $n$, so $f(x_n) \to 1 \neq 0 = f(0)$.
By contrast, define $g(x) = x \sin(1/x)$ for $x \neq 0$ and $g(0) = 0$. Then $g$ is continuous at $0$: for any sequence $x_n \to 0$, $|g(x_n)| = |x_n| \cdot |\sin(1/x_n)| \le |x_n| \to 0$, so $g(x_n) \to 0 = g(0)$. The factor $x$ "kills" the oscillation.
[/example]
## Continuity and Topological Properties
The deepest consequences of continuity come from its interaction with the topological properties of the domain. Continuous functions preserve compactness and connectedness — two results that underpin the Extreme Value Theorem and the Intermediate Value Theorem respectively.
### Preservation of Compactness
A continuous function maps [compact](/page/Topology) sets to compact sets. In the setting of real-valued functions on closed bounded intervals, this gives the Extreme Value Theorem.
[quotetheorem:305]
The proof is a one-line manipulation of open covers: if $\{V_i\}$ covers $f(K)$, then $\{f^{-1}(V_i)\}$ covers $K$; extract a finite subcover of $K$ and take images. This result is the abstract engine behind many concrete facts: continuous images of closed bounded sets in $\mathbb{R}^n$ are closed and bounded (by Heine-Borel), continuous real-valued functions on compact spaces attain their extrema, and the [Closed Map Lemma](/theorems/317) (continuous functions from compact spaces to Hausdorff spaces are closed maps).
[quotetheorem:304]
The Extreme Value Theorem follows from the preservation of compactness: $f(X)$ is compact in $\mathbb{R}$, hence [closed and bounded](/theorems/315), so $\sup f(X) \in f(X)$ and $\inf f(X) \in f(X)$. This abstracts the familiar calculus result that a continuous function on $[a, b]$ attains its maximum and minimum — the proof is purely topological and applies to any compact space, not just intervals.
### Preservation of Connectedness and the Intermediate Value Theorem
A continuous function maps connected sets to connected sets. For real-valued functions, this gives the Intermediate Value Theorem.
[quotetheorem:296]
The proof is by contradiction: if $f(X) = U \cup V$ were a disconnection, then $f^{-1}(U)$ and $f^{-1}(V)$ would disconnect $X$, contradicting the connectedness of $X$. The most important consequence is:
[quotetheorem:629]
The Intermediate Value Theorem is the topological core of many existence results in analysis: the existence of roots of polynomials with real coefficients (if $p(a) < 0 < p(b)$, then $p(c) = 0$ for some $c \in (a, b)$), the existence of fixed points of continuous self-maps of $[0, 1]$ (if $f: [0,1] \to [0,1]$ is continuous, apply IVT to $g(x) = f(x) - x$), and the surjectivity of the determinant map on connected matrix groups.
[example:Fixed Point Of A Continuous Self Map]
Let $f: [0, 1] \to [0, 1]$ be continuous. Define $g(x) = f(x) - x$. Then $g$ is continuous, $g(0) = f(0) - 0 = f(0) \ge 0$ (since $f(0) \in [0,1]$), and $g(1) = f(1) - 1 \le 0$ (since $f(1) \in [0,1]$). By the [Intermediate Value Theorem](/theorems/629), there exists $c \in [0,1]$ with $g(c) = 0$, i.e. $f(c) = c$. Every continuous function from $[0,1]$ to itself has a fixed point.
[/example]
## Uniform Continuity
Ordinary continuity allows $\delta$ to depend on both $\varepsilon$ and the point $a$. Uniform continuity strengthens this: $\delta$ depends only on $\varepsilon$ and works simultaneously at every point. This distinction is invisible for functions on compact domains (the Heine-Cantor theorem guarantees uniformity) but is crucial on unbounded or non-compact domains.
### Definition and the Key Distinction
The difference between continuity and uniform continuity is a quantifier swap: continuity says $\forall a\; \forall \varepsilon\; \exists \delta$; uniform continuity says $\forall \varepsilon\; \exists \delta\; \forall a$. Moving $\forall a$ outside the existential $\exists \delta$ is a strictly stronger condition.
[definition:Uniformly Continuous Function]
Let $(X, d_X)$ and $(Y, d_Y)$ be metric spaces. A function $f: X \to Y$ is **uniformly continuous** if for every $\varepsilon > 0$ there exists $\delta > 0$ such that
\begin{align*}
d_X(x, y) < \delta \implies d_Y(f(x), f(y)) < \varepsilon \quad \text{for all } x, y \in X.
\end{align*}
[/definition]
Every uniformly continuous function is continuous (take $y = a$ in the definition). The converse is false:
[example:Continuity Without Uniform Continuity]
The function $f: (0, \infty) \to \mathbb{R}$ defined by $f(x) = 1/x$ is continuous but not uniformly continuous. Continuity at each $a > 0$ is a standard $\varepsilon$-$\delta$ exercise. To show non-uniform continuity, take $x_n = 1/n$ and $y_n = 1/(n+1)$. Then $|x_n - y_n| = 1/(n(n+1)) \to 0$, but $|f(x_n) - f(y_n)| = |n - (n+1)| = 1$. No single $\delta$ can make $|f(x) - f(y)| < 1$ whenever $|x - y| < \delta$, because the function's slope grows without bound near $0$.
[/example]
### The Heine-Cantor Theorem
On compact domains, continuity automatically upgrades to uniform continuity. This is the Heine-Cantor theorem — one of the most frequently used results in analysis.
[quotetheorem:280]
The theorem is stated for $[a, b]$ but holds for any continuous function on a compact metric space (the proof generalises immediately: cover the domain with $\delta_x/2$-balls, extract a finite subcover by compactness, and take $\delta = \min \delta_{x_i}/2$). The compactness hypothesis is essential — the example $f(x) = 1/x$ on $(0, 1)$ shows that continuity on a bounded but non-compact domain does not imply uniform continuity.
The Heine-Cantor theorem is the reason that many arguments in analysis work on compact domains but fail on non-compact ones: the Riemann integral is defined using uniform continuity of the integrand; the Arzelà-Ascoli theorem uses equicontinuity (a family-level analogue of uniform continuity); and the approximation theorems (Weierstrass, Stone-Weierstrass) produce uniformly convergent approximations on compact sets.
## Lipschitz Continuity
Uniform continuity says that $\delta$ can be chosen independently of the point. Lipschitz continuity says more: $\delta$ can be chosen *proportional* to $\varepsilon$, with a fixed constant of proportionality. This is the strongest common regularity condition short of differentiability and is the natural setting for the Banach fixed-point theorem, Picard-Lindelöf existence, and the theory of ODEs.
[definition:Lipschitz Continuous Function]
Let $(X, d_X)$ and $(Y, d_Y)$ be metric spaces. A function $f: X \to Y$ is **Lipschitz continuous** (or **$L$-Lipschitz**) if there exists a constant $L \ge 0$ such that
\begin{align*}
d_Y(f(x), f(y)) \le L \cdot d_X(x, y) \quad \text{for all } x, y \in X.
\end{align*}
The smallest such $L$ is the **Lipschitz constant** $\operatorname{Lip}(f)$.
[/definition]
The hierarchy of regularity is: Lipschitz $\implies$ uniformly continuous $\implies$ continuous, and none of the reverse implications hold. Every Lipschitz function is uniformly continuous (take $\delta = \varepsilon / L$). The function $f(x) = \sqrt{x}$ on $[0, 1]$ is uniformly continuous (by Heine-Cantor) but not Lipschitz ($|f(x) - f(0)| / |x - 0| = 1/\sqrt{x} \to \infty$).
In the differentiable setting, Lipschitz continuity and bounded derivative are closely related. If $f: [a, b] \to \mathbb{R}$ is differentiable with $|f'(x)| \le L$ for all $x$, then the Mean Value Theorem gives $|f(x) - f(y)| = |f'(c)||x - y| \le L|x - y|$, so $f$ is $L$-Lipschitz. Conversely, a Lipschitz function is differentiable almost everywhere (Rademacher's theorem) with $|f'(x)| \le \operatorname{Lip}(f)$ a.e.
[example:Distance Function Is Lipschitz]
For any nonempty subset $A$ of a metric space $(X, d)$, the distance function $d_A: X \to [0, \infty)$ defined by $d_A(x) = \inf_{a \in A} d(x, a)$ is $1$-Lipschitz: $|d_A(x) - d_A(y)| \le d(x, y)$ for all $x, y$. This follows from the triangle inequality: for any $a \in A$, $d(x, a) \le d(x, y) + d(y, a)$, so $d_A(x) \le d(x, y) + d_A(y)$.
[/example]
## Continuity and Closed Sets
The topological definition of continuity — preimages of open sets are open — has an equivalent formulation in terms of [closed sets](/page/Closed%20Set): preimages of closed sets are closed. This dual characterisation is often more natural for real-valued functions, since many important sets in $\mathbb{R}$ are closed ($\{0\}$, $[a, b]$, $(-\infty, c]$).
### The Closed Preimage Characterisation
The equivalence is immediate from complementation: $f^{-1}(Y \setminus F) = X \setminus f^{-1}(F)$, so $f^{-1}(V)$ is open for every open $V$ if and only if $f^{-1}(F)$ is closed for every closed $F$.
This characterisation has many applications. If $f: X \to \mathbb{R}$ is continuous, then: the zero set $f^{-1}(\{0\})$ is closed; the sublevel set $\{x : f(x) \le c\}$ is closed for every $c$; the superlevel set $\{x : f(x) \ge c\}$ is closed; and the level set $f^{-1}(\{c\})$ is closed. These facts are used constantly in analysis and geometry to verify that specific sets are closed — expressing them as preimages of closed sets under known continuous functions.
### Continuity and the Closure Operator
A function $f: X \to Y$ is continuous if and only if $f(\overline{A}) \subseteq \overline{f(A)}$ for every $A \subseteq X$. The forward direction: if $x \in \overline{A}$ and $V$ is any open neighbourhood of $f(x)$, then $f^{-1}(V)$ is an open neighbourhood of $x$ (by continuity), so $f^{-1}(V) \cap A \neq \varnothing$ (since $x \in \overline{A}$), hence $V \cap f(A) \neq \varnothing$, so $f(x) \in \overline{f(A)}$.
This characterisation is useful in topological arguments where open sets are not directly available — for instance, when working with closures of dense subsets or with limit points.
[example:Preimage Characterisations]
The unit sphere $S^{n-1} = \{x \in \mathbb{R}^n : |x| = 1\}$ is closed because it equals $f^{-1}(\{1\})$ where $f(x) = |x|$ is continuous. The set $\{(x, y) \in \mathbb{R}^2 : x^2 + y^2 \le 1,\; y \ge 0\}$ (the upper half of the closed unit disc) is closed because it is $g^{-1}((-\infty, 1]) \cap h^{-1}([0, \infty))$ where $g(x,y) = x^2 + y^2$ and $h(x,y) = y$ are both continuous, and a finite intersection of closed sets is closed.
[/example]
## Homeomorphisms and Embeddings
A continuous bijection need not have a continuous inverse — the structure-preserving maps of topology require continuity in both directions. Understanding when a continuous bijection *is* a homeomorphism, and how continuous injections relate to embeddings, is central to the classification of topological spaces.
### Homeomorphisms
A **homeomorphism** is a continuous bijection whose inverse is also continuous. Equivalently, it is a bijection $f: X \to Y$ such that $U$ is open in $X$ if and only if $f(U)$ is open in $Y$.
The [Topological Inverse Function Theorem](/theorems/318) provides the most important sufficient condition: a continuous bijection from a compact space to a Hausdorff space is automatically a homeomorphism. This is because the [Closed Map Lemma](/theorems/317) guarantees that continuous functions from compact to Hausdorff spaces are closed maps, and a continuous closed bijection has a continuous inverse.
[example:Continuous Bijection That Is Not A Homeomorphism]
The function $f: [0, 2\pi) \to S^1$ defined by $f(t) = (\cos t, \sin t)$ is a continuous bijection from the half-open interval to the circle. But $f^{-1}$ is not continuous: the set $[0, 1/2) \cup (2\pi - 1/2, 2\pi)$ is open in $[0, 2\pi)$ (it equals $(-1/2, 1/2) \cap [0, 2\pi)$), and its image under $f$ is a small arc around $(1, 0) \in S^1$ that is open in $S^1$, but the preimage of a slightly different open arc may not be open. The problem is that $[0, 2\pi)$ is not compact — if we replace it with $[0, 2\pi]$ and quotient the endpoints, the resulting space is compact and homeomorphic to $S^1$.
[/example]
### Topological Embeddings
A **topological embedding** is a continuous injection $f: X \to Y$ that is a homeomorphism onto its image $f(X)$ (with the subspace topology). Not every continuous injection is an embedding — the example $[0, 2\pi) \to S^1$ above is a continuous injection but not an embedding.
Embeddings are the topological analogue of isometric embeddings in metric spaces. The Whitney embedding theorem asserts that every smooth $n$-manifold can be smoothly embedded in $\mathbb{R}^{2n}$; the Urysohn metrization theorem implies that every second-countable regular space can be topologically embedded in the Hilbert cube $[0,1]^\mathbb{N}$.
## Semicontinuity
Many functions that arise naturally in analysis — suprema, infima, indicator functions of open sets, norms — fail to be continuous but satisfy a one-sided continuity condition. Semicontinuity captures this: the function may jump *down* (lower semicontinuity) or *up* (upper semicontinuity), but not in the forbidden direction.
[definition:Lower Semicontinuous Function]
A function $f: X \to \mathbb{R} \cup \{+\infty\}$ on a topological space $X$ is **lower semicontinuous** (l.s.c.) at $a \in X$ if for every $\lambda < f(a)$, there exists an open neighbourhood $U$ of $a$ with $f(x) > \lambda$ for all $x \in U$. Equivalently, $\liminf_{x \to a} f(x) \ge f(a)$.
$f$ is lower semicontinuous on $X$ if it is l.s.c. at every point, or equivalently, if the sublevel set $\{x : f(x) \le c\}$ is [closed](/page/Closed%20Set) for every $c \in \mathbb{R}$.
[/definition]
[definition:Upper Semicontinuous Function]
A function $f: X \to \mathbb{R} \cup \{-\infty\}$ is **upper semicontinuous** (u.s.c.) if $-f$ is lower semicontinuous. Equivalently, the superlevel set $\{x : f(x) \ge c\}$ is closed for every $c \in \mathbb{R}$.
[/definition]
A function is continuous if and only if it is both lower and upper semicontinuous. The sublevel set characterisation of l.s.c. functions makes them natural for variational problems: the direct method of the calculus of variations seeks to minimise a functional $I(u)$ over a set of admissible functions, and the key hypothesis is that $I$ is l.s.c. with respect to the weak topology — ensuring that the infimum is attained along a weakly convergent minimising sequence.
[example:Indicator Function Semicontinuity]
The indicator function $\mathbb{1}_U: X \to \{0, 1\}$ of an [open set](/page/Open%20Set) $U$ is lower semicontinuous: the sublevel set $\{\mathbb{1}_U \le c\}$ equals $X$ for $c \ge 1$, $X \setminus U$ for $0 \le c < 1$, and $\varnothing$ for $c < 0$ — all closed. But $\mathbb{1}_U$ is not upper semicontinuous (unless $U$ is also closed): the superlevel set $\{\mathbb{1}_U \ge 1\} = U$ is open, not necessarily closed.
Dually, $\mathbb{1}_F$ for a [closed set](/page/Closed%20Set) $F$ is upper semicontinuous.
[/example]
## References
- Rudin, W., *Principles of Mathematical Analysis* (3rd ed., 1976).
- Munkres, J. R., *Topology* (2nd ed., 2000).
- Dugundji, J., *Topology* (1966).
- Bartle, R. G. and Sherbert, D. R., *Introduction to Real Analysis* (4th ed., 2011). |
0 | Sat Apr 04 2026 14:06:07 GMT+0000 (Coordinated Universal Time) |
Current Content
Debug: Found 1 attribution entries
First Attribution: Source: create, Text length: 21826, Start: N/A, End: N/A
Page content length: 29465
In metric spaces, continuity is defined by the $\varepsilon$-$\delta$ condition: small perturbations of the input produce small perturbations of the output. But many of the spaces that arise in modern mathematics — weak topologies on Banach spaces, quotient spaces, spaces of distributions, the Zariski topology in algebraic geometry — carry no natural metric. The product space $\mathbb{R}^\mathbb{R}$ (all functions $\mathbb{R} \to \mathbb{R}$ with the topology of pointwise convergence) is not metrisable. Neither is the space $\mathcal{D}'(\Omega)$ of distributions with its standard topology. Yet continuity in these spaces is essential: weak convergence, distributional convergence, and algebraic continuity all require a definition that works without distance.
The topological definition eliminates metrics entirely. A function $f: X \to Y$ between topological spaces is continuous if and only if the preimage of every open set in $Y$ is open in $X$. This single condition — expressible in terms of the open-set structure alone — captures every metric-space notion of continuity as a special case, while extending to spaces where $\varepsilon$ and $\delta$ are meaningless. It also reveals that continuity is the structure-preserving map of topology: continuous functions are to topological spaces what homomorphisms are to groups and linear maps are to vector spaces.
[example:Continuity Without A Metric]
Consider the space $\mathbb{R}^\mathbb{N}$ of all real sequences, equipped with the product topology (the topology of pointwise convergence). This space is not normable: there is no single norm that generates the product topology. Yet we can verify continuity of maps into this space using only open sets.
Define $T: C([0, 1]) \to \mathbb{R}^\mathbb{N}$ by $T(f) = (f(1/n))_{n=1}^\infty$ — the map that samples a continuous function at the points $1, 1/2, 1/3, \ldots$. To check continuity, we need only verify that preimages of subbasic open sets are open. A subbasic open set in $\mathbb{R}^\mathbb{N}$ has the form $\pi_k^{-1}(U) = \{(x_n) : x_k \in U\}$ for some $k \in \mathbb{N}$ and open $U \subseteq \mathbb{R}$. The preimage is:
\begin{align*}
T^{-1}(\pi_k^{-1}(U)) = \{f \in C([0,1]) : f(1/k) \in U\} = \operatorname{ev}_{1/k}^{-1}(U),
\end{align*}
which is open in the sup-norm topology on $C([0,1])$ because point evaluation $\operatorname{ev}_{1/k}$ is continuous. No $\varepsilon$-$\delta$ argument involving a metric on $\mathbb{R}^\mathbb{N}$ was needed — the topological definition handled a non-metrisable codomain directly.
[/example]
This page develops continuity at the level of general topological spaces. For the metric-space theory (the $\varepsilon$-$\delta$ definition, sequential characterisation, uniform and Lipschitz continuity) see Continuity (Metric Spaces). For concrete examples on $\mathbb{R}$ see Continuity (Real Analysis).
Definition
[definition:Continuous Map]
Let $(X, \tau_X)$ and $(Y, \tau_Y)$ be topological spaces. A function $f: X \to Y$ is continuous if for every open set $V \in \tau_Y$, the preimage $f^{-1}(V) = \{x \in X : f(x) \in V\}$ is open in $X$: $f^{-1}(V) \in \tau_X$.
[/definition]
The definition asks nothing about the image of open sets — forward images of open sets under continuous functions need not be open. (The function $f: \mathbb{R} \to \mathbb{R}$ defined by $f(x) = x^2$ sends the open set $(-1, 1)$ to $[0, 1)$, which is not open.) It is the preimage that must respect the topology.
There is an equivalent formulation in terms of closed sets, obtained by taking complements: $f$ is continuous if and only if $f^{-1}(F)$ is closed in $X$ for every closed $F \subseteq Y$. This dual characterisation is often more convenient for real-valued functions, since many natural sets in $\mathbb{R}$ are closed: $\{0\}$, $[a, b]$, $(-\infty, c]$.
[example:Closed Sets As Continuous Preimages]
If $f: X \to \mathbb{R}$ is continuous, then: the zero set $Z(f) = f^{-1}(\{0\})$ is closed (preimage of the closed set $\{0\}$); the sublevel set $\{x : f(x) \leq c\}$ is closed (preimage of $(-\infty, c]$); and the level set $f^{-1}(\{c\})$ is closed for every $c$. These facts allow us to verify that specific sets are closed by expressing them as preimages: the unit sphere $S^{n-1} = \{x \in \mathbb{R}^n : \|x\| = 1\}$ is closed because $\|{\cdot}\|$ is continuous and $\{1\}$ is closed.
[/example]
Why Preimages, Not Images?
The asymmetry in the definition — preimages of open sets must be open, but nothing is required of forward images — is a deliberate and essential feature, not an arbitrary convention. Forward images of open sets under continuous functions can fail badly: the squaring map $x \mapsto x^2$ sends the open interval $(-1, 1)$ to $[0, 1)$, which is not open. The projection $\pi_1: \mathbb{R}^2 \to \mathbb{R}$ sends the open set $\{(x, y) : xy = 1,\, x > 0\}$ to $(0, \infty)$, but the closed set $\{(x, y) : xy = 1\}$ to $\mathbb{R} \setminus \{0\}$, which is not closed. Forward images simply do not respect the topology in a predictable way.
Preimages, by contrast, commute with all set-theoretic operations: $f^{-1}(A \cup B) = f^{-1}(A) \cup f^{-1}(B)$, $f^{-1}(A \cap B) = f^{-1}(A) \cap f^{-1}(B)$, and $f^{-1}(Y \setminus A) = X \setminus f^{-1}(A)$. This algebraic compatibility is what makes the preimage condition equivalent to the closed-set formulation, and it is why continuous functions automatically preserve convergence of nets, compactness, and connectedness. The few situations where forward images are well-behaved (open maps, closed maps, proper maps) are important enough to merit separate study later in this page.
Continuity at a Point
The global definition asks for every open preimage to be open — a condition on all of $X$ at once. But many arguments in analysis are local: we care about behaviour near a specific point $a$, and we want to express the idea that $f$ does not "tear" the space at $a$. The pointwise definition captures this by requiring only that neighbourhoods of $f(a)$ pull back to neighbourhoods of $a$, without imposing any condition at other points.
[definition:Continuous At A Point Topological]
A function $f: X \to Y$ is continuous at $a \in X$ if for every open set $V \subseteq Y$ containing $f(a)$, there exists an open set $U \subseteq X$ containing $a$ with $f(U) \subseteq V$. Equivalently, for every neighbourhood $V$ of $f(a)$, the preimage $f^{-1}(V)$ is a neighbourhood of $a$.
[/definition]
A function is continuous (globally) if and only if it is continuous at every point — this follows immediately from the definitions, since a set is open if and only if it is a neighbourhood of each of its points.
The Closure Operator Characterisation
A function $f: X \to Y$ is continuous if and only if $f(\overline{A}) \subseteq \overline{f(A)}$ for every $A \subseteq X$: continuous functions cannot "escape" the closure by mapping limit points outside the closure of the image. The forward direction follows because $\overline{f(A)}$ is closed, so $f^{-1}(\overline{f(A)})$ is closed and contains $A$, hence contains $\overline{A}$. The reverse direction: if $F \subseteq Y$ is closed and $A = f^{-1}(F)$, then $f(\overline{A}) \subseteq \overline{f(A)} \subseteq \overline{F} = F$, so $\overline{A} \subseteq f^{-1}(F) = A$, proving $A$ is closed.
Composition and the Category of Topological Spaces
The most basic structural property of continuous functions is that they compose: continuity is preserved under sequential application. This makes topological spaces and continuous maps into a category, and it is the reason that continuity — rather than, say, openness of forward images — is the "correct" notion of morphism in topology.
Continuous functions compose: if $f: X \to Y$ and $g: Y \to Z$ are continuous, then $g \circ f: X \to Z$ is continuous. The proof is one line: $(g \circ f)^{-1}(W) = f^{-1}(g^{-1}(W))$, which is open by two applications of continuity. The identity map $\operatorname{id}_X: X \to X$ is always continuous. These two facts make topological spaces and continuous maps into a category — the category $\mathbf{Top}$.
Continuous functions also interact well with topological constructions:
Restriction. If $f: X \to Y$ is continuous and $A \subseteq X$ carries the subspace topology, then $f|_A: A \to Y$ is continuous.
Corestriction. If $f: X \to Y$ is continuous and $f(X) \subseteq B \subseteq Y$, then $f: X \to B$ (with the subspace topology on $B$) is continuous.
Products. A function $f: Z \to X \times Y$ (with the product topology) is continuous if and only if both component functions $\pi_X \circ f$ and $\pi_Y \circ f$ are continuous. More generally, $f: Z \to \prod_{\alpha} X_\alpha$ is continuous if and only if $\pi_\alpha \circ f$ is continuous for every $\alpha$.
The Pasting Lemma
A common technique for constructing continuous functions is to define them piecewise on overlapping or adjacent closed (or open) subsets and "glue" the pieces together. The Pasting Lemma guarantees that the result is continuous, provided the pieces agree on overlaps.
If $X = A \cup B$ where $A$ and $B$ are both closed (or both open), and $f: A \to Y$ and $g: B \to Y$ are continuous with $f|_{A \cap B} = g|_{A \cap B}$, then the function $h: X \to Y$ defined by $h(x) = f(x)$ for $x \in A$ and $h(x) = g(x)$ for $x \in B$ is continuous. For the closed case: if $C \subseteq Y$ is closed, then $h^{-1}(C) = f^{-1}(C) \cup g^{-1}(C)$, which is a union of two sets that are closed in $A$ and $B$ respectively; since $A$ and $B$ are closed in $X$, these sets are closed in $X$, so $h^{-1}(C)$ is closed.
The result extends to finite unions of closed sets but fails for infinite unions. For open covers, the result extends to arbitrary unions — reflecting the fact that arbitrary unions of open sets are open.
[example:Constructing A Loop By Pasting]
Define $\gamma: [0, 1] \to \mathbb{R}^2$ by:
\begin{align*}
\gamma(t) = \begin{cases} (2t, 0) & \text{if } 0 \leq t \leq 1/2, \\ (\cos(\pi(2t-1)), \sin(\pi(2t-1))) & \text{if } 1/2 \leq t \leq 1. \end{cases}
\end{align*}
The two pieces are continuous on the closed sets $[0, 1/2]$ and $[1/2, 1]$, and they agree at $t = 1/2$ (both give $(1, 0)$). By the Pasting Lemma, $\gamma$ is continuous on $[0, 1]$. This construction — building paths and loops by concatenating pieces — is fundamental in algebraic topology.
[/example]
Preservation Theorems
The deepest consequences of continuity come from its interaction with topological properties of the domain. Two properties are preserved by continuous images: compactness and connectedness. These preservation results are the abstract engines behind the Extreme Value Theorem and the Intermediate Value Theorem.
Continuous Images of Compact Sets
[quotetheorem:305]
The proof is a single manipulation of open covers: if $\{V_i\}$ is an open cover of $f(K)$, then $\{f^{-1}(V_i)\}$ is an open cover of $K$ (by continuity); extract a finite subcover $\{f^{-1}(V_{i_1}), \ldots, f^{-1}(V_{i_m})\}$ (by compactness of $K$); then $\{V_{i_1}, \ldots, V_{i_m}\}$ is a finite subcover of $f(K)$.
This result is the abstract engine behind many concrete facts. Continuous real-valued functions on compact spaces are bounded and attain their bounds:
[quotetheorem:304]
The Extreme Value Theorem follows from the chain: $f(X)$ is compact in $\mathbb{R}$ (by preservation of compactness), hence closed and bounded (by Heine-Borel); a closed bounded subset of $\mathbb{R}$ contains its supremum and infimum, so $f$ attains its maximum and minimum. The key insight is that none of the individual steps require a metric on $X$ — compactness and continuity are purely topological, and the metric structure of $\mathbb{R}$ enters only at the very end, through Heine-Borel. This is why the Extreme Value Theorem generalises effortlessly from $\mathbb{R}^n$ to any compact topological space: the topology does all the work. The theorem fails without compactness ($f(x) = 1/x$ on $(0,1)$ is continuous but unbounded) and without continuity ($\mathbb{1}_{(0,1)}$ on $[0,1]$ is bounded but does not attain its supremum on any compact set containing the boundary).
Continuous Images of Connected Sets
[quotetheorem:296]
The proof is by contradiction: if $f(X) = U \cup V$ were a disconnection (with $U, V$ nonempty, open in $f(X)$, and disjoint), then $f^{-1}(U)$ and $f^{-1}(V)$ would be nonempty, open in $X$, disjoint, and covering $X$ — disconnecting $X$, contradicting connectedness.
The most important consequence is the Intermediate Value Theorem: if $f: X \to \mathbb{R}$ is continuous and $X$ is connected, then $f(X)$ is connected in $\mathbb{R}$, hence an interval. Every value between $\inf f$ and $\sup f$ is attained.
[quotetheorem:629]
[example:Fixed Points From Connectedness]
Every continuous $f: [0, 1] \to [0, 1]$ has a fixed point. The function $g(x) = f(x) - x$ is continuous with $g(0) = f(0) \geq 0$ and $g(1) = f(1) - 1 \leq 0$. By the Intermediate Value Theorem, $g(c) = 0$ for some $c$, giving $f(c) = c$. This is the one-dimensional Brouwer fixed-point theorem — in higher dimensions, the proof requires algebraic topology.
[/example]
The Closed Map Lemma and Homeomorphisms
A continuous bijection need not have a continuous inverse: the map $f: [0, 2\pi) \to S^1$ defined by $f(t) = (\cos t, \sin t)$ is a continuous bijection, but $f^{-1}$ is discontinuous at $(1, 0)$ because $[0, 2\pi)$ is not compact. The following result gives the decisive sufficient condition.
[quotetheorem:317]
The proof uses the interplay between compactness and the Hausdorff property. If $C \subseteq X$ is closed, then $C$ is compact (closed subset of a compact space). By the Continuous Image of Compact Sets, $f(C)$ is compact in $Y$. Since $Y$ is Hausdorff, compact subsets are closed, so $f(C)$ is closed.
[quotetheorem:318]
This follows immediately from the Closed Map Lemma: a continuous closed bijection has a continuous inverse (the inverse sends closed sets to closed sets, hence open sets to open sets). The theorem explains why the map $[0, 2\pi) \to S^1$ fails to be a homeomorphism: $[0, 2\pi)$ is not compact. If we replace it with $[0, 2\pi] / \{0 \sim 2\pi\}$ (the quotient identifying the endpoints), the resulting space is compact, and the induced map to $S^1$ is indeed a homeomorphism.
Homeomorphisms and Embeddings
The Closed Map Lemma and its corollary raise a fundamental question: when are two topological spaces "the same"? Group theory has isomorphisms, linear algebra has invertible linear maps, and topology needs an analogue — a bijection that preserves the entire open-set structure in both directions. A continuous bijection is not enough (as $[0, 2\pi) \to S^1$ shows), because the inverse may fail to be continuous. The correct notion requires continuity in both directions.
[definition:Homeomorphism]
A homeomorphism is a continuous bijection $f: X \to Y$ whose inverse $f^{-1}: Y \to X$ is also continuous. Equivalently, $f$ is a bijection such that $U \subseteq X$ is open if and only if $f(U) \subseteq Y$ is open. If a homeomorphism exists, $X$ and $Y$ are homeomorphic, written $X \cong Y$.
[/definition]
Homeomorphic spaces are topologically identical — every topological property (compactness, connectedness, Hausdorffness, number of connected components, fundamental group, ...) is the same for both. Homeomorphisms are the isomorphisms of the category $\mathbf{Top}$.
Often we do not need a bijection between two entire spaces, but rather a way to realise one space as a "copy" sitting inside another. A subspace $A \subseteq Y$ with the subspace topology is an obvious example, but more generally we want to recognise when a continuous injection $f: X \to Y$ faithfully represents $X$ as a subspace of $Y$ — that is, when $f$ is not just injective and continuous but also identifies $X$ homeomorphically with $f(X)$.
[definition:Topological Embedding]
A topological embedding is a continuous injection $f: X \to Y$ that is a homeomorphism onto its image $f(X)$ (with the subspace topology). Not every continuous injection is an embedding.
[/definition]
[example:Continuous Bijection That Is Not A Homeomorphism]
The identity map $\operatorname{id}: (X, \tau_{\text{disc}}) \to (X, \tau_{\text{coarse}})$ from the discrete topology to the coarsest topology (only $\varnothing$ and $X$ are open) is a continuous bijection — every function from a discrete space is continuous. But the inverse $\operatorname{id}: (X, \tau_{\text{coarse}}) \to (X, \tau_{\text{disc}})$ is not continuous whenever $|X| \geq 2$: singletons are open in the discrete topology but not in the coarse topology. This is the simplest example showing that a continuous bijection need not be a homeomorphism — the two topologies on $X$ may have different open sets despite the identity being a bijection.
[/example]
Semicontinuity
Many functions that arise naturally in analysis — suprema, infima, indicator functions of open sets, norms — fail to be continuous but satisfy a one-sided condition. Semicontinuity captures this asymmetry in purely topological terms.
[definition:Lower Semicontinuous Function]
A function $f: X \to \mathbb{R} \cup \{+\infty\}$ on a topological space $X$ is lower semicontinuous (l.s.c.) if for every $c \in \mathbb{R}$, the sublevel set $\{x \in X : f(x) \leq c\}$ is closed. Equivalently, $\{x : f(x) > c\}$ is open for every $c$, or $\liminf_{x \to a} f(x) \geq f(a)$ for every $a$.
[/definition]
[definition:Upper Semicontinuous Function]
A function $f: X \to \mathbb{R} \cup \{-\infty\}$ is upper semicontinuous (u.s.c.) if $-f$ is lower semicontinuous. Equivalently, the superlevel set $\{x : f(x) \geq c\}$ is closed for every $c$.
[/definition]
A function is continuous if and only if it is both lower and upper semicontinuous. Semicontinuity appears in two key settings:
Variational problems. The direct method of the calculus of variations seeks to minimise a functional $I(u)$ over admissible functions. The key hypothesis is that $I$ is l.s.c. with respect to the appropriate topology — typically the weak topology on a Sobolev space. Lower semicontinuity ensures that $I(u) \leq \liminf I(u_n)$ along a minimising sequence $u_n$, so the infimum is attained at the weak limit.
Indicator functions. The indicator $\mathbf{1}_U$ of an open set $U$ is lower semicontinuous: $\{\mathbf{1}_U \leq c\}$ equals $X$ for $c \geq 1$, $X \setminus U$ for $0 \leq c < 1$, and $\varnothing$ for $c < 0$ — all closed. Dually, $\mathbf{1}_F$ for a closed set $F$ is upper semicontinuous.
[example:The Supremum Of A Family Of Continuous Functions]
If $\{f_\alpha\}_{\alpha \in A}$ is a family of continuous functions $f_\alpha: X \to \mathbb{R}$, then $g(x) = \sup_\alpha f_\alpha(x)$ is lower semicontinuous (when the supremum is finite or $+\infty$). The superlevel set $\{x : g(x) > c\} = \bigcup_\alpha \{x : f_\alpha(x) > c\}$ is a union of open sets, hence open. Similarly, $\inf_\alpha f_\alpha$ is upper semicontinuous. This explains a common phenomenon: the supremum of continuous functions need not be continuous (it may "jump up" at limit points), but it can only jump in one direction.
[/example]
Initial and Final Topologies
Many topologies are defined by the requirement that certain maps be continuous. The initial and final topologies are the universal solutions to this problem.
Initial Topologies
In practice, we often construct topologies by specifying which maps should be continuous. The subspace topology on $A \subseteq Y$ is the coarsest topology making the inclusion $\iota: A \hookrightarrow Y$ continuous; the product topology on $\prod X_\alpha$ is the coarsest topology making every projection $\pi_\alpha$ continuous. These are both instances of a single construction: given a set $X$ and maps $f_\alpha: X \to Y_\alpha$ into known topological spaces, there is a unique coarsest topology on $X$ that makes all the $f_\alpha$ continuous.
[definition:Initial Topology]
Let $X$ be a set and let $\{f_\alpha: X \to Y_\alpha\}_{\alpha \in A}$ be a family of functions into topological spaces $Y_\alpha$. The initial topology on $X$ (with respect to $\{f_\alpha\}$) is the coarsest topology on $X$ making every $f_\alpha$ continuous. It is generated by the sets $f_\alpha^{-1}(V_\alpha)$ for $V_\alpha$ open in $Y_\alpha$.
[/definition]
The initial topology has a universal property: a function $g: Z \to X$ (from any topological space $Z$) is continuous if and only if $f_\alpha \circ g: Z \to Y_\alpha$ is continuous for every $\alpha$.
The most important instances are: the subspace topology on $A \subseteq Y$ (the initial topology for the inclusion $\iota: A \hookrightarrow Y$) and the product topology on $\prod_\alpha X_\alpha$ (the initial topology for the projections $\pi_\alpha: \prod X_\alpha \to X_\alpha$). The weak topology on a Banach space $X$ is the initial topology for the family of functionals $\{f \in X^*\}$; the weak-* topology on $X^*$ is the initial topology for the evaluation maps $\{\operatorname{ev}_x : x \in X\}$.
Final Topologies
The dual situation arises when we have maps into a set $Y$ from known topological spaces, and we want the finest topology on $Y$ making all these maps continuous. Where the initial topology asks "what is the least we must declare open to make incoming maps continuous?", the final topology asks "what is the most we can declare open while keeping outgoing maps continuous?" The quotient topology is the central example: we identify points in a space and want the resulting quotient to carry as much topological structure as possible.
[definition:Final Topology]
Let $Y$ be a set and let $\{g_\alpha: X_\alpha \to Y\}_{\alpha \in A}$ be a family of functions from topological spaces $X_\alpha$. The final topology on $Y$ is the finest topology making every $g_\alpha$ continuous. A set $V \subseteq Y$ is open if and only if $g_\alpha^{-1}(V)$ is open in $X_\alpha$ for every $\alpha$.
[/definition]
The final topology has the dual universal property: $h: Y \to Z$ is continuous if and only if $h \circ g_\alpha: X_\alpha \to Z$ is continuous for every $\alpha$.
The most important instance is the quotient topology on $Y = X / {\sim}$ (the final topology for the quotient map $q: X \to X/{\sim}$). A set $V \subseteq X/{\sim}$ is open if and only if $q^{-1}(V)$ is open in $X$. The coproduct (disjoint union) topology is another instance: $V \subseteq \bigsqcup_\alpha X_\alpha$ is open if and only if $V \cap X_\alpha$ is open for every $\alpha$.
[example:The Quotient Map $\mathbb{R} \to S^1$]
The map $q: \mathbb{R} \to S^1$ defined by $q(t) = (\cos 2\pi t, \sin 2\pi t)$ is continuous and surjective. The equivalence relation $t \sim s \iff t - s \in \mathbb{Z}$ gives a bijection $\mathbb{R}/\mathbb{Z} \cong S^1$, and the quotient topology on $\mathbb{R}/\mathbb{Z}$ is exactly the topology inherited from $S^1$. A function $f: S^1 \to Z$ is continuous if and only if $f \circ q: \mathbb{R} \to Z$ is continuous and periodic — this is the universal property of the quotient in action.
By contrast, restricting $q$ to $[0, 1)$ gives a continuous bijection $[0, 1) \to S^1$ that is not a homeomorphism ($[0, 1)$ is not compact, so the Topological Inverse Function Theorem does not apply). The quotient construction $[0, 1]/\{0 \sim 1\}$, which is compact, gives the correct homeomorphism.
[/example]
Open and Closed Maps
Continuity controls preimages: open sets pull back to open sets. But in many situations — quotient constructions, projections, covering maps — we need to understand the forward behaviour of a map. When does a map send open sets to open sets, or closed sets to closed sets? These are genuinely independent properties: a map can be continuous without being open or closed, open without being continuous, or any other combination. The maps that do preserve open or closed sets forward have special structural significance, particularly in the theory of quotient spaces and in constructing homeomorphisms.
[definition:Open Map]
A function $f: X \to Y$ is an open map if $f(U)$ is open in $Y$ for every open $U \subseteq X$.
[/definition]
[definition:Closed Map]
A function $f: X \to Y$ is a closed map if $f(C)$ is closed in $Y$ for every closed $C \subseteq X$.
[/definition]
A bijection $f$ is a homeomorphism if and only if it is continuous and open, or equivalently, continuous and closed. Projections $\pi: X \times Y \to X$ are always open maps (a basic open set $U \times V$ in the product projects to $U$, which is open) but need not be closed (the hyperbola $\{(x, y) : xy = 1\}$ is closed in $\mathbb{R}^2$ but its projection $\mathbb{R} \setminus \{0\}$ onto the $x$-axis is not closed). The Closed Map Lemma says that continuous maps from compact to Hausdorff spaces are always closed — this is the key to the Topological Inverse Function Theorem.
Quotient maps $q: X \to X/{\sim}$ are always continuous and surjective, but they are open only if the equivalence relation is "well-behaved" (e.g., if the equivalence classes are orbits of a topological group action by homeomorphisms).
Proper Maps
Closed maps ensure that closed sets push forward to closed sets, but they impose no control on the "size" of fibres. A proper map adds a compactness condition on fibres that prevents mass from escaping to infinity — making it the topological analogue of the coercivity conditions that appear throughout analysis and PDE theory. Properness is the key hypothesis in degree theory, in the global analysis of fibre bundles, and in many compactness arguments where one needs preimages of bounded sets to be bounded.
[definition:Proper Map]
A continuous map $f: X \to Y$ is proper if $f^{-1}(K)$ is compact for every compact $K \subseteq Y$.
[/definition]
Every continuous map from a compact space is proper (since every preimage is a closed subset of a compact space, hence compact). For non-compact domains, properness is a strong condition: the inclusion $\iota: (0, 1) \hookrightarrow \mathbb{R}$ is continuous but not proper, because $\iota^{-1}([0, 1]) = (0, 1)$ is not compact.
Proper maps to locally compact Hausdorff spaces are closed. This gives an alternative route to the Closed Map Lemma: a continuous map from a compact space to a Hausdorff space is proper (preimages of compact sets are closed subsets of the compact domain, hence compact), hence closed.
Properness is the topological analogue of a "coercivity" condition in analysis: it ensures that sequences cannot escape to infinity without their images also escaping. This makes proper maps the natural setting for degree theory and for the global analysis of fibre bundles.
Extension of Continuous Functions
A recurring problem in topology and analysis is the extension problem: given a continuous function defined on a subspace, can it be extended to a continuous function on the whole space? This question is not merely technical — it underlies the construction of partitions of unity, the theory of retracts, and the very definition of normal spaces.
On metric spaces, extensions are often constructed explicitly (e.g., by the Tietze formula or McShane's extension for Lipschitz functions). In general topology, existence depends on separation axioms: the space must have enough open sets to "interpolate" between the values prescribed on the subspace.
[quotetheorem:888]
The Tietze-Urysohn theorem is the definitive positive result: on normal spaces (which include all metric spaces and all compact Hausdorff spaces), bounded continuous real-valued functions on closed subsets always extend, and the extension preserves the sup-norm. The hypothesis that $C$ be closed is essential — on an open subset, the function might oscillate near the boundary in a way that prevents continuous extension. The normality hypothesis cannot be dropped either: Tietze extension characterises normality, in the sense that a $T_1$ space is normal if and only if every bounded continuous real-valued function on a closed subset extends continuously.
The extension problem becomes far more subtle for maps into spaces other than $\mathbb{R}$. The Borsuk-Dugundji theorem extends the result to maps into locally convex topological vector spaces, but for maps into spheres or other non-contractible targets, extension is obstructed by algebraic topology — the obstructions are measured by cohomology classes.
Bibliography
- Munkres, Topology (2000).
- Willard, General Topology (1970).
- Engelking, General Topology (1989).
- Kelley, General Topology (1955).
Attribution Debug Info:
Total segments: 1
Attributed segments: 0
Non-attributed segments: 1