Added measurability in separable metric spaces.

This commit is contained in:
Bokuan Li
2026-01-21 16:03:50 -05:00
parent c6796d2cc1
commit 0b24ab616f
15 changed files with 376 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
\section{Metrics}
\label{section:metric}
\begin{definition}[Metric Space]
\label{definition:metric}
Let $X$ be a set and $d: X \times X$, then $d$ is a \textbf{metric} if:
\begin{enumerate}
\item[(PM1)] For any $x \in X$, $d(x, x) = 0$.
\item[(M)] For any $x, y \in X$ with $x \ne y$, $d(x, y) > 0$.
\item[(PM2)] For any $x, y \in X$, $d(x, y) = d(y, x)$.
\item[(PM3)] For any $x, y, z \in X$, $d(x, z) \le d(x, y) + d(y, z)$.
\end{enumerate}
The pair $(X, d)$ is a \textbf{metric space}, which comes with the metric uniformity induced by $d$, and the corresponding topology.
\end{definition}