Search Knowledge

© 2026 LIBREUNI PROJECT

Calculus & Analysis / Overview

Functional Analysis

Functional Analysis

Functional analysis studies vector spaces endowed with a limit-related structure (like a metric or topology) and the linear operators acting upon them.

1. Normed Linear Spaces

A Normed Linear Space (V,)(V, \|\cdot\|) is a vector space VV over a field (usually C\mathbb{C} or R\mathbb{R}) with a norm function :V[0,)\|\cdot\|: V \to [0, \infty) satisfying:

  1. Definiteness: v=0    v=0\|v\| = 0 \iff v = 0.
  2. Homogeneity: αv=αv\|\alpha v\| = |\alpha| \cdot \|v\|.
  3. Triangle Inequality: u+vu+v\|u + v\| \le \|u\| + \|v\|.

A Banach Space is a normed linear space that is complete (every Cauchy sequence converges).

2. Hilbert Spaces and Inner Products

A Hilbert Space is a complete inner product space. The inner product ,\langle \cdot, \cdot \rangle satisfies:

  1. Linearity: αu+βv,w=αu,w+βv,w\langle \alpha u + \beta v, w \rangle = \alpha \langle u, w \rangle + \beta \langle v, w \rangle.
  2. Conjugate Symmetry: u,v=v,u\langle u, v \rangle = \overline{\langle v, u \rangle}.
  3. Positive Definiteness: v,v0\langle v, v \rangle \ge 0, with equality only if v=0v=0.

The L2L^2 Space is a primary example, where functions are square-integrable: f,g=abf(x)g(x)dx,f2=abf(x)2dx\langle f, g \rangle = \int_a^b f(x) \overline{g(x)} \, dx, \quad \|f\|_2 = \sqrt{\int_a^b |f(x)|^2 \, dx}

python
1import numpy as np
2 
3# Numerical verification of the Triangle Inequality
4# ||f + g|| <= ||f|| + ||g||
5x = np.linspace(0, 1, 500)
6f = x**2
7g = np.exp(x)
8 
9def norm_l2(y, dx):
10 return np.sqrt(np.trapz(y**2, dx))
11 
12dx = x[1] - x[0]
13n_f = norm_l2(f, x)
14n_g = norm_l2(g, x)
15n_sum = norm_l2(f + g, x)
16 
17print(f"||f||: {n_f:.4f}")
18print(f"||g||: {n_g:.4f}")
19print(f"||f+g||: {n_sum:.4f}")
20print(f"Is {n_sum:.4f} <= {n_f + n_g:.4f}? {n_sum <= n_f + n_g + 1e-9}")

3. Linear Operators

  1. Partial Differential Equations: Proving that a solution exists even if we can’t find it.
  2. Signal Processing: Decomposing complex signals into simple frequencies.
  3. Quantum Mechanics: The state of a particle is a vector in an infinite-dimensional Hilbert space.

Exercises

In functional analysis, what corresponds to the 'Dot Product' of two vectors?

Why do we say that functional analysis deals with 'Infinite Dimensions'?

In the context of the derivative operator, what is f(x) = e^x?

Previous Module Fourier Analysis