Part IV: Advanced Topics | Chapter 2

Introduction to Functional Analysis

Linear algebra in infinite dimensions: Banach and Hilbert spaces

Historical Context

Functional analysis emerged from Hilbert's work on integral equations, Banach's thesis on normed spaces (1920), and Riesz's representation theorem. Stefan Banach systematically developed the theory of complete normed spaces in his 1932 monograph, establishing the Hahn-Banach, open mapping, and uniform boundedness theorems. These "big three" theorems, together with the Riesz representation theorem, form the pillars of functional analysis and underpin modern PDE theory, quantum mechanics, and optimization.

4.1 Normed Spaces and Banach Spaces

Definition: Banach Space

A Banach space is a complete normed vector space: every Cauchy sequence converges. Key examples: $\ell^p$ (sequences with finite $p$-norm), $L^p(\Omega)$ (functions with finite $\int|f|^p$), $C[a,b]$ (continuous functions with sup-norm).

The $\ell^p$ norms on $\mathbb{R}^n$: $\|x\|_p = \left(\sum_i |x_i|^p\right)^{1/p}$ for$1 \leq p < \infty$, and $\|x\|_\infty = \max_i |x_i|$. All norms on finite-dimensional spaces are equivalent, but this fails dramatically in infinite dimensions.

4.2 Hilbert Spaces

Definition: Hilbert Space

A Hilbert space is a complete inner product space. The inner product$\langle \cdot, \cdot \rangle$ induces the norm $\|x\| = \sqrt{\langle x, x \rangle}$. The key example is $L^2(\Omega)$ with $\langle f, g \rangle = \int f\bar{g}$.

The Riesz representation theorem states that every continuous linear functional on a Hilbert space $H$ has the form $\phi(x) = \langle x, y \rangle$ for a unique$y \in H$. This identifies $H$ with its dual $H^*$, a property special to Hilbert spaces.

An orthonormal basis $\{e_n\}$ satisfies Parseval's identity:$\|x\|^2 = \sum_n |\langle x, e_n \rangle|^2$. The Fourier basis $\{e^{inx}/\sqrt{2\pi}\}$is the canonical orthonormal basis for $L^2[0, 2\pi]$.

4.3 Bounded Linear Operators

An operator $T: X \to Y$ between normed spaces is bounded if$\|T\| = \sup_{\|x\|=1} \|Tx\| < \infty$. The space $\mathcal{B}(X, Y)$ of bounded operators is itself a Banach space. A bounded operator is compact if it maps bounded sets to precompact sets—compact operators are the "infinite-dimensional analogues of matrices".

4.4 Fundamental Theorems

  • Hahn-Banach: Every bounded linear functional on a subspace extends to the whole space with the same norm
  • Open Mapping (Banach): A surjective bounded linear map between Banach spaces is open
  • Closed Graph: A linear map between Banach spaces is bounded iff its graph is closed
  • Uniform Boundedness (Banach-Steinhaus): A pointwise bounded family of operators is uniformly bounded

4.5 Spectral Theory in Infinite Dimensions

For compact self-adjoint operators on a Hilbert space, the spectral theorem gives$Tx = \sum_n \lambda_n \langle x, e_n \rangle e_n$ where $\lambda_n \to 0$. The eigenvalues form a countable set accumulating only at 0. This is the infinite-dimensional analogue of matrix diagonalization and underpins the Fredholm theory of integral equations.

For general bounded operators, the spectrum $\sigma(T) = \{\lambda : T - \lambda I \text{ not invertible}\}$can include continuous spectrum and residual spectrum beyond the point spectrum (eigenvalues).

Computational Laboratory

This simulation compares ℓᵖ norms, demonstrates Fourier approximation in L², verifies eigenvalue decay for compact operators, and visualizes unit balls in different norm topologies.

Functional Analysis: Norms, Hilbert Spaces, and Compact Operators

Python
functional_analysis.py130 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Rate this chapter: