Orthonormal Basis — Definition, Formula & Examples
An orthonormal basis is a set of vectors that are all mutually perpendicular (orthogonal) and each have a magnitude of 1. These vectors span the entire space, so any vector in that space can be written as a unique combination of them.
A set of vectors forms an orthonormal basis for an inner product space of dimension if the vectors are pairwise orthogonal ( for ), each vector is unit length (), and the set spans .
Key Formula
Where:
- = Vectors in the orthonormal basis
- = Inner product (e.g., the dot product in Euclidean space)
- = Kronecker delta, equals 1 when indices match and 0 otherwise
How It Works
To check whether a set of vectors is an orthonormal basis, verify two things: every pair of distinct vectors has a dot product of zero, and each vector has magnitude 1. The standard basis in , namely , is the most familiar example. When you have an orthonormal basis, finding a vector's coordinates becomes simple: the coefficient for each basis vector is just the dot product of your vector with that basis vector. This eliminates the need to solve systems of equations. The Gram-Schmidt process is the standard algorithm for converting any basis into an orthonormal one.
Worked Example
Problem: Verify that the set is an orthonormal basis for , then express in this basis.
Check orthogonality: Compute the dot product of the two vectors.
Check unit length: Compute the magnitude of each vector.
Find coordinates of v: Since the basis is orthonormal, each coordinate is just the dot product of v with the corresponding basis vector.
c_1 = \mathbf{v} \cdot \mathbf{e}_1 = \frac{3}{\sqrt{2}} + \frac{1}{\sqrt{2}} = \frac{4}{\sqrt{2}} = 2\sqrt{2}$$$$c_2 = \mathbf{v} \cdot \mathbf{e}_2 = -\frac{3}{\sqrt{2}} + \frac{1}{\sqrt{2}} = -\frac{2}{\sqrt{2}} = -\sqrt{2}
Answer: The set is orthonormal, and .
Why It Matters
Orthonormal bases are essential in quantum mechanics, signal processing (Fourier series are built on orthonormal functions), and computer graphics. They make projections, least-squares approximations, and coordinate transformations computationally simple and numerically stable.
Common Mistakes
Mistake: Confusing orthogonal with orthonormal. A set of mutually perpendicular vectors that do not all have magnitude 1 is orthogonal but not orthonormal.
Correction: Always verify both conditions: pairwise orthogonality and unit length. If the vectors are orthogonal but not unit length, normalize each one by dividing it by its magnitude.
