Important Definitions in Functional Analysis

Functional Analysis is where linear algebra meets topology. It’s the study of infinite-dimensional spaces—and if that sounds abstract, here’s why you should care: it’s the mathematical backbone of quantum mechanics, signal processing, and machine learning. Let me walk you through the essential definitions you’ll encounter.

What Is Functional Analysis, Really?

Functional Analysis studies vector spaces equipped with some notion of “closeness” or “size”—things like norms, inner products, or topologies. Then it examines the linear functions (called operators) that respect these structures.

Think of it this way: in linear algebra, you work with finite lists of numbers. In functional analysis, you work with functions as your “vectors.” A function like \( f(x) = x^2 \) becomes a point in an infinite-dimensional space. Weird? Yes. Powerful? Extremely.

Why it matters: Quantum states are vectors in Hilbert spaces. Fourier transforms are linear operators. Differential equations become operator equations. Master these definitions, and you’ll see the same structures everywhere.

Vector Space (Linear Space)

Everything in functional analysis builds on this foundation. A vector space (or linear space) over a field \( K \) is a set \( X \) with two operations: vector addition and scalar multiplication.

Formally, \( X \) is a vector space if it has:

  • Addition: \( + : X \times X \to X \)
  • Scalar multiplication: \( \cdot : K \times X \to X \)

And these operations satisfy eight axioms:

AxiomWhat It SaysIn Symbols
CommutativityOrder doesn’t matter for addition\( x + y = y + x \)
Associativity (add)Grouping doesn’t matter\( x + (y + z) = (x + y) + z \)
Zero elementThere’s an additive identity\( \exists \, 0 : x + 0 = x \)
Negatives existEvery element has an inverse\( \exists \, {-x} : x + (-x) = 0 \)
Distributivity (scalar)Scalars distribute over vectors\( k(x + y) = kx + ky \)
Distributivity (vector)Vectors distribute over scalars\( (k + l)x = kx + lx \)
Associativity (scalar)Scalar products associate\( (kl)x = k(lx) \)
UnityMultiplying by 1 does nothing\( 1 \cdot x = x \)

Here, \( x, y, z \in X \) are vectors and \( k, l \in K \) are scalars (usually \( K = \mathbb{R} \) or \( \mathbb{C} \)).

Pro Tip: When checking if something is a vector space, most axioms are “obvious.” The ones that trip people up: Does a zero element exist? Is the set closed under the operations? Focus there.

Set Operations in Linear Spaces

Functional analysis constantly manipulates sets of vectors. Here’s the notation you’ll see everywhere:

NotationDefinitionMeaning
\( x + F \)\( \{ x + y : y \in F \} \)Translate set \( F \) by vector \( x \)
\( E + F \)\( \{ x + y : x \in E, y \in F \} \)Minkowski sum of two sets
\( kE \)\( \{ kx : x \in E \} \)Scale every element by \( k \)
\( E \times F \)\( \{ (x, y) : x \in E, y \in F \} \)Cartesian product

The Minkowski sum \( E + F \) is particularly important—it shows up in optimization, convex geometry, and the study of Banach spaces.

Subspaces

A subspace \( Y \) of vector space \( X \) is a non-empty subset that’s closed under vector space operations. That means:

\( kx + ly \in Y \) whenever \( x, y \in Y \) and \( k, l \in K \)

In other words, any linear combination of elements in \( Y \) stays in \( Y \).

Quick test: Does the set contain the zero vector? If not, it’s not a subspace. (Zero is a linear combination with all coefficients equal to zero.)

Span and Hamel Basis

For a non-empty subset \( E \subset X \), the span of \( E \) is the smallest subspace containing \( E \):

$$ \text{span}(E) = \left\{ \sum_{i=1}^{n} k_i x_i : x_i \in E, \, k_i \in K, \, n \in \mathbb{N} \right\} $$

It’s all finite linear combinations of elements from \( E \).

When \( \text{span}(E) = X \) and \( E \) is linearly independent, we call \( E \) a Hamel basis (or algebraic basis) of \( X \).

Warning: In infinite-dimensional spaces, Hamel bases are unwieldy. They exist (by Zorn’s Lemma) but are typically uncountable and non-constructive. For most functional analysis, you’ll use Schauder bases instead—where infinite sums are allowed via convergence.

Convex Sets and Convex Hulls

Convexity is everywhere in functional analysis and optimization.

A subset \( E \) of vector space \( X \) is convex if, for any two points \( x, y \in E \), the entire line segment connecting them lies in \( E \):

\( rx + (1-r)y \in E \) for all \( x, y \in E \) and \( 0 < r < 1 \)

Think of it geometrically: a convex set has no “dents” or “holes.”

The convex hull of a set \( E \), written \( \text{co}(E) \), is the smallest convex set containing \( E \):

$$ \text{co}(E) = \left\{ \sum_{i=1}^{n} r_i x_i : x_i \in E, \, r_i \geq 0, \, \sum_{i=1}^{n} r_i = 1 \right\} $$

These are all convex combinations—weighted averages where the weights are non-negative and sum to 1.

Linear Maps (Linear Operators)

A linear map \( F : X \to Y \) between vector spaces preserves the linear structure:

$$ F(k_1 x_1 + k_2 x_2) = k_1 F(x_1) + k_2 F(x_2) $$

for all \( x_1, x_2 \in X \) and \( k_1, k_2 \in K \).

Two important subspaces associated with any linear map:

NameSymbolDefinitionLives In
Range (Image)\( R(F) \)\( \{ y \in Y : F(x) = y \text{ for some } x \in X \} \)\( Y \)
Kernel (Null space)\( Z(F) \) or \( \ker(F) \)\( \{ x \in X : F(x) = 0 \} \)\( X \)

The fundamental relationship between these:

$$ \dim(X) = \dim(R(F)) + \dim(Z(F)) $$

This is the Rank-Nullity Theorem—one of the most important results in linear algebra, and it extends to functional analysis with care.

Pro Tip: A linear map is injective (one-to-one) if and only if \( \ker(F) = \{0\} \). This is often the cleanest way to prove injectivity.

Norms: Measuring Size in Vector Spaces

Here’s where functional analysis really begins. A norm on vector space \( X \) is a function \( \| \cdot \| : X \to \mathbb{R} \) that measures the “size” of vectors.

It must satisfy three axioms:

AxiomStatementIntuition
Positivity\( \|x\| \geq 0 \), with \( \|x\| = 0 \Leftrightarrow x = 0 \)Size is non-negative; only zero has zero size
Triangle Inequality\( \|x + y\| \leq \|x\| + \|y\| \)The direct path is never longer
Absolute Homogeneity\( \|kx\| = |k| \cdot \|x\| \)Scaling the vector scales its size

A vector space equipped with a norm is called a normed space.

Important Examples of Normed Spaces

SpaceElementsNorm
\( \mathbb{R}^n \), \( \mathbb{C}^n \)Finite tuples \( (x_1, \ldots, x_n) \)\( \|x\|_2 = \sqrt{\sum |x_i|^2} \) (Euclidean)
\( \ell^p \) (\( 1 \leq p < \infty \))Sequences with \( \sum |x_i|^p < \infty \)\( \|x\|_p = \left( \sum |x_i|^p \right)^{1/p} \)
\( \ell^\infty \)Bounded sequences\( \|x\|_\infty = \sup_i |x_i| \)
\( c \)Convergent sequences\( \|x\|_\infty \)
\( c_0 \)Sequences converging to 0\( \|x\|_\infty \)
\( c_{00} \)Eventually zero sequences\( \|x\|_\infty \)
\( L^p \) (\( 1 \leq p < \infty \))Functions with \( \int |f|^p < \infty \)\( \|f\|_p = \left( \int |f|^p \right)^{1/p} \)
\( L^\infty \)Essentially bounded functions\( \|f\|_\infty = \text{ess sup} |f| \)

The hierarchy: \( c_{00} \subset c_0 \subset c \subset \ell^\infty \). Each is a subspace of the next. Understanding these sequence spaces is key to building intuition for the function spaces.

Banach Spaces: Complete Normed Spaces

A normed space where every Cauchy sequence converges is called a Banach space. Completeness is crucial—it lets you take limits and know they stay in the space.

From the examples above:

  • Complete (Banach): \( \mathbb{R}^n \), \( \ell^p \), \( \ell^\infty \), \( c \), \( c_0 \), \( L^p \), \( L^\infty \)
  • Not complete: \( c_{00} \) (eventually zero sequences)

Most of functional analysis happens in Banach spaces because completeness is essential for proving existence theorems.

Inner Products and Hilbert Spaces

An inner product on vector space \( X \) is a function \( \langle \cdot, \cdot \rangle : X \times X \to K \) satisfying:

  • Linearity (in first argument): \( \langle ax + by, z \rangle = a\langle x, z \rangle + b\langle y, z \rangle \)
  • Conjugate symmetry: \( \langle x, y \rangle = \overline{\langle y, x \rangle} \)
  • Positive definiteness: \( \langle x, x \rangle \geq 0 \), with equality iff \( x = 0 \)

Every inner product induces a norm: \( \|x\| = \sqrt{\langle x, x \rangle} \).

A complete inner product space is called a Hilbert space—the setting for quantum mechanics, Fourier analysis, and much more.

Key examples: \( \ell^2 \) and \( L^2 \) are Hilbert spaces. The other \( \ell^p \) and \( L^p \) spaces (for \( p \neq 2 \)) are Banach spaces but not Hilbert spaces—their norms don’t come from inner products.

Quick Reference: The Hierarchy of Spaces

Here’s how all these structures relate:

Vector Space → (add norm) → Normed Space → (add completeness) → Banach Space

Vector Space → (add inner product) → Inner Product Space → (add completeness) → Hilbert Space

Every Hilbert space is a Banach space, but not vice versa. The inner product gives you more structure—angles, orthogonality, projections—that pure norms don’t provide.

Frequently Asked Questions

What’s the difference between a Hamel basis and a Schauder basis?

A Hamel basis requires every vector to be a finite linear combination of basis elements. A Schauder basis allows infinite convergent sums. In infinite-dimensional spaces, Hamel bases are typically uncountable and impractical. Schauder bases (like the standard basis in ℓ² or Fourier bases in L²) are the workhorses of functional analysis.

Why does completeness matter so much?

Completeness guarantees that limit processes work. In an incomplete space, you can have a Cauchy sequence that ‘should’ converge but doesn’t (because the limit isn’t in the space). Major theorems like the Banach Fixed Point Theorem, the Open Mapping Theorem, and the Closed Graph Theorem all require completeness.

What makes L² so special?

L² is the only Lᵖ space that’s a Hilbert space. Its norm comes from an inner product: ⟨f,g⟩ = ∫f·ḡ. This gives you orthogonality, projections onto subspaces, and the Pythagorean theorem. In quantum mechanics, L² is the space of wavefunctions, and the inner product gives probability amplitudes.

How do I check if a set is convex?

Pick any two points in the set and check if the line segment between them stays entirely inside. Mathematically: verify that rx + (1-r)y is in the set for all r ∈ (0,1). For algebraic sets (defined by equations/inequalities), convexity often follows from properties of the defining functions.

What’s the relationship between linear maps and matrices?

In finite dimensions, every linear map corresponds to a matrix (once you fix bases). In infinite dimensions, this correspondence breaks down—linear maps between function spaces can’t be represented by finite matrices. Instead, you study operators abstractly through their properties (boundedness, continuity, spectrum) rather than matrix entries.

What’s Next?

These definitions are your foundation. The real power of functional analysis comes from the theorems that connect them:

  • Hahn-Banach Theorem — Extending linear functionals
  • Open Mapping Theorem — When bijective operators have bounded inverses
  • Closed Graph Theorem — A powerful tool for proving continuity
  • Banach-Alaoglu Theorem — Compactness in dual spaces
  • Spectral Theorem — Diagonalizing operators on Hilbert spaces

Master the definitions first. The theorems will make much more sense when you have solid intuition for the underlying spaces and structures.