[motivation]
## Motivation
### The Metric Origin
In a metric space $(X, d)$, the notion of "closeness" is quantified by the distance [function](/page/Function). A set $U \subseteq X$ is declared **open** if every point of $U$ has some room around it: for each $x \in U$, there exists $\varepsilon > 0$ such that the open ball $B(x, \varepsilon) = \{y \in X : d(x, y) < \varepsilon\}$ is entirely contained in $U$. This captures the intuition that an open set has no "edge points" — from any point in $U$, one can move a small distance in any direction and remain inside $U$.
For instance, the open interval $(0, 1) \subset \mathbb{R}$ is open: any point $x \in (0,1)$ has $\varepsilon = \min(x, 1-x) > 0$ with $(x - \varepsilon, x + \varepsilon) \subseteq (0,1)$. The closed interval $[0, 1]$ is not open: the endpoints $0$ and $1$ have no $\varepsilon$-ball contained in $[0,1]$, since every ball around $0$ contains negative numbers.
### Why Axiomatise?
Two observations motivate the passage from metric openness to the axiomatic definition. First, many important topologies — pointwise convergence on function spaces, the weak and weak* topologies in functional analysis — are not metrizable, yet the notion of "open set" still governs convergence and continuity. Second, even in metric spaces, the open sets satisfy three closure properties (empty set and whole space are open, arbitrary unions are open, finite intersections are open) that depend only on the *collection* of open sets, not on the specific values of the distance function. These three properties are the axioms of a [topology](/page/Topology), and they are sufficient to rebuild all of point-set topology without reference to any distance.
### The Asymmetry
The axioms allow arbitrary unions of open sets to be open, but only *finite* intersections. This asymmetry is not a design choice — it reflects what actually happens in [metric spaces](/page/Metric%20Space). The intersection $\bigcap_{n=1}^\infty (-1/n, 1/n) = \{0\}$ is a single point, which is not open in $\mathbb{R}$: no ball around $0$ fits inside $\{0\}$. But any union of open balls is open, because a point in the union belongs to at least one ball and therefore has its own sub-ball. This asymmetry has deep consequences: the theory of [closed sets](/page/Closed%20Set) (complements of open sets) has the dual asymmetry — arbitrary intersections of closed sets are closed, but infinite unions need not be.
[/motivation]