Added facts about vector measures.

This commit is contained in:
Bokuan Li
2026-03-15 19:30:28 -04:00
parent 2e160500cc
commit b5126e965b
16 changed files with 568 additions and 41 deletions

View File

@@ -39,9 +39,53 @@
for all $x \in S$.
\end{proof}
\begin{definition}[Space of Bounded Functions]
\label{definition:bounded-function-space}
Let $T$ be a set, $E$ be a TVS over $K \in \RC$, and $f: T \to E$ be a function, then $f$ is \textbf{bounded} if $f(T)$ is a bounded subset of $E$. The set $B(T; E) \subset E^T$ is the space of all bounded functions from $T$ to $E$, and:
\begin{enumerate}
\item $B(T; E)$ equipped with the uniform topology and pointwise operations is a TVS over $K \in \RC$.
\item $B(T; E)$ is a closed subset of $E^T$ with respect to the uniform topology. In particular, if $E$ is complete, then so is $B(T; E)$.
\end{enumerate}
\end{definition}
\begin{proof}
(1): For any $f, g \in B(T; E)$ and $\lambda \in K$, $(\lambda f + g)(T) \subset (\lambda f)(T) + g(T)$, which is bounded by \autoref{proposition:bounded-operations}, so $B(T; E)$ is closed under addition and scalar multiplication.
Since $f(E)$ is bounded for all $f \in B(T; E)$, $B(T; E)$ forms a TVS over $K$ by \autoref{proposition:tvs-set-uniformity}.
(2): Let $f \in \ol{B(T; E)}$ and $U \in \cn_E(0)$ be circled, then there exists $g \in B(T; E)$ such that $(f - g)(E) \subset U$. Since $g \in B(T; E)$, there exists $\lambda \ge 0$ such that $g(E) \subset \lambda U$. In which case,
\[
f(E) \subset g(E) + (f - g)(E) \subset (\lambda + 1)U
\]
so $f \in B(T; E)$.
If $E$ is complete, then $E^T$ with the uniform topology is complete by \autoref{proposition:set-uniform-complete}. Thus $B(T; E)$ is also complete by \autoref{proposition:complete-closed}.
\end{proof}
\begin{definition}[Space of Bounded Continuous Functions]
\label{definition:bounded-continuous-function-space}
Let $X$ be a topological space and $E$ be a TVS over $K \in \RC$, then $BC(X; E) = B(X; E) \cap C(X; E)$ is the space of bounded and continuous functions from $X$ to $E$, and
\begin{enumerate}
\item $BC(X; E)$ equipped with the uniform topology and pointwise operations is a TVS over $K \in \RC$.
\item $BC(X; E)$ is a closed subspace of $C(X; E)$ and $B(X; E)$ with respect to the uniform topology. In particular, if $E$ is complete, then so is $BC(X; E)$.
\end{enumerate}
\end{definition}
\begin{proof}
(1): Since addition and scalar multiplication are continuous, $BC(X; E)$ is a subspace of $B(X; E)$, and hence a TVS over $K \in \RC$ by \autoref{definition:bounded-function-space}.
(2): Since $B(X; E)$ and $C(X; E)$ are both closed subspaces of $E^X$ by \autoref{definition:bounded-function-space}, $BC(X; E)$ is a closed subspace.
If $E$ is complete, then $B(X; E)$ and $C(X; E)$ are both complete under the uniform topology by \autoref{definition:bounded-function-space}. Therefore $BC(X; E)$ is also complete.
\end{proof}
\begin{definition}[Space of Bounded Linear Maps]
\label{definition:bounded-linear-map-space}
Let $E, F$ be TVSs over $K \in \RC$, $\mathfrak{S} \subset 2^E$ be an upward-directed system, and $k \in \nat$. The space $B_{\mathfrak{S}}^k(E; F)$ is the set of all $k$-linear maps $T: E^k \to F$ with $T(S^k) \in B(F)$ for all $S \in \mathfrak{S}$, equipped with the $\bracsn{S^k| S \in \mathfrak{S}}$-uniform topology.
Let $\fB \subset 2^E$ be the collection of all bounded subsets of $E$, then $B_{\mathfrak{S}}(E; F) = B(E; F)$ is the \textbf{space of bounded linear maps} from $E$ to $F$.
\end{definition}
\begin{proposition}
@@ -127,3 +171,35 @@
The space $L_b(E; F)$ denotes $L(E; F)$ equipped with the topology of bounded convergence.
\end{definition}
\begin{proposition}
\label{proposition:operator-space-completeness}
Let $E, F$ be TVSs over $K \in \RC$ with $F$ being separated, then:
\begin{enumerate}
\item $\hom(E; F)$ is a closed subspace of $F^E$ with respect to the product topology.
\item $B(E; F)$ is a closed subspace of $F^E$ with respect to the topology of bounded convergence. In particular, if $F$ is complete, then so is $B(E; F)$.
\end{enumerate}
\end{proposition}
\begin{proof}
(1): For each $x, y \in E$ and $\lambda \in K$, the mappings
\[
\phi_{x, y}: F^E \to F \quad T \mapsto Tx + Ty - T(x + y)
\]
and
\[
\psi_{x, \lambda}: F^E \to F \quad T \mapsto T(\lambda x) - Tx
\]
are continuous with respect to the product topology. Since
\[
\hom(E; F) = \bigcap_{x, y \in E}\bracsn{\phi_{x, y} = 0} \cap \bigcap_{\substack{x \in E \\ \lambda \in K}}\bracsn{\psi_{x, \lambda} = 0}
\]
and $\bracs{0}$ is closed in $F$, $\hom(E; F)$ is a closed subspace of $F^E$.
(2): By \autoref{definition:bounded-function-space} and (1), the space of bounded functions and the space of linear functions from $E$ to $F$ are closed subspaces of $F^E$ with respect to the topology of bounded convergence. Therefore $B(E; F)$ is also a closed subspace.
\end{proof}