Orthonormal Bases and Vector Spaces

April 10, 2026 · Luciano Muratore

Having explored the algebraic structures of groups, we now shift our focus toward the geometric and analytical structure of RN\mathbb{R}^N.

Vectors and Notation

A point in the NN-dimensional real space RN\mathbb{R}^{N} is specified by an NN-tuple of coordinates. We denote this as a vector x\mathbf{x}, typically expressed as a column vector:

x=[x0x1xN1]=[x0,x1,,xN1]T\mathbf{x} = \begin{bmatrix} x_{0} \\ x_{1} \\ \vdots \\ x_{N-1} \end{bmatrix} = [x_{0}, x_{1}, \dots, x_{N-1}]^{T}

Each coordinate xix_i is a real number, and the nn-th element specifically is denoted by XnX_n. In this framework, the zero vector 0\mathbf{0} is simply the vector where every entry is zero.

Inner Product, Norm, and Distance

To discuss geometry, we need a way to measure angles and lengths. The inner product of two vectors x\mathbf{x} and y\mathbf{y} is defined as the sum of the products of their components:

x,y=n=0N1xnyn\langle \mathbf{x}, \mathbf{y} \rangle = \sum_{n=0}^{N-1} x_{n}y_{n}

This leads us to two vital geometric concepts:

  • Orthogonality: Two vectors are orthogonal (xy\mathbf{x} \perp \mathbf{y}) if and only if their inner product is zero.
  • Norm: The L2L_2 norm, or magnitude, of a vector is given by x2=x,x||\mathbf{x}||_{2} = \sqrt{\langle \mathbf{x}, \mathbf{x} \rangle}. [cite: 21, 24]

Furthermore, the distance between any two vectors is defined by the norm of their difference: d(x,y)=xy2d(\mathbf{x}, \mathbf{y}) = ||\mathbf{x} - \mathbf{y}||_{2}.

The Concept of a Basis

A set of MM vectors {x(k)}k=0M1\{x^{(k)}\}_{k=0}^{M-1} is said to span RN\mathbb{R}^N if any vector zRN\mathbf{z} \in \mathbb{R}^N can be written as a linear combination of those vectors:

z=k=0M1αkx(k)\mathbf{z} = \sum_{k=0}^{M-1} \alpha_{k}x^{(k)}

To successfully span the entirety of RN\mathbb{R}^N, a set must contain at least NN linearly independent vectors. When we have a set of exactly NN linearly independent vectors that spans the space, we call that set a basis.

Orthonormal Bases

A basis {y(k)}k=0N1\{y^{(k)}\}_{k=0}^{N-1} is particularly “well-behaved” if it is orthonormal. This means the vectors are both mutually orthogonal and have a unit norm, satisfying the condition:

y(k),y(h)={1if k=h0otherwise\langle y^{(k)}, y^{(h)} \rangle = \begin{cases} 1 & \text{if } k=h \\ 0 & \text{otherwise} \end{cases}

The most common example is the canonical orthonormal basis. In this basis, each vector δn(k)\delta_{n}^{(k)} contains a single 1 at index kk and 0 at all other coordinates, providing the simplest possible coordinate system for the space.