ConceptComplete

Orthogonal and Orthonormal Sets

Orthogonality is the generalization of perpendicularity to abstract inner product spaces. Orthonormal bases provide the most convenient coordinate systems.

DefinitionOrthogonal and Orthonormal Sets

A set {v1,v2,…,vk}\{\mathbf{v}_1, \mathbf{v}_2, \ldots, \mathbf{v}_k\} in an inner product space is:

  • Orthogonal if ⟨vi,vj⟩=0\langle \mathbf{v}_i, \mathbf{v}_j \rangle = 0 for all iβ‰ ji \neq j
  • Orthonormal if it is orthogonal and βˆ₯viβˆ₯=1\|\mathbf{v}_i\| = 1 for all ii

In other words, orthonormal means: ⟨vi,vj⟩=Ξ΄ij={1ifΒ i=j0ifΒ iβ‰ j\langle \mathbf{v}_i, \mathbf{v}_j \rangle = \delta_{ij} = \begin{cases} 1 & \text{if } i = j \\ 0 & \text{if } i \neq j \end{cases}

TheoremOrthogonal Sets are Independent

Any orthogonal set of nonzero vectors is linearly independent.

Proof: Suppose c1v1+β‹―+ckvk=0c_1\mathbf{v}_1 + \cdots + c_k\mathbf{v}_k = \mathbf{0}. Taking inner product with vi\mathbf{v}_i: ⟨c1v1+β‹―+ckvk,vi⟩=⟨0,vi⟩=0\langle c_1\mathbf{v}_1 + \cdots + c_k\mathbf{v}_k, \mathbf{v}_i \rangle = \langle \mathbf{0}, \mathbf{v}_i \rangle = 0

By linearity and orthogonality: ci⟨vi,vi⟩=0c_i\langle \mathbf{v}_i, \mathbf{v}_i \rangle = 0

Since viβ‰ 0\mathbf{v}_i \neq \mathbf{0}, we have ⟨vi,vi⟩>0\langle \mathbf{v}_i, \mathbf{v}_i \rangle > 0, so ci=0c_i = 0. ∎

DefinitionOrthonormal Basis

An orthonormal basis for an inner product space VV is a basis consisting of orthonormal vectors.

If B={e1,…,en}\mathcal{B} = \{\mathbf{e}_1, \ldots, \mathbf{e}_n\} is an orthonormal basis, then any v∈V\mathbf{v} \in V has the simple expansion: v=βˆ‘i=1n⟨v,ei⟩ei\mathbf{v} = \sum_{i=1}^n \langle \mathbf{v}, \mathbf{e}_i \rangle \mathbf{e}_i

The coordinates are simply the inner products: ci=⟨v,ei⟩c_i = \langle \mathbf{v}, \mathbf{e}_i \rangle.

ExampleComputing with Orthonormal Basis

The standard basis {e1,e2,e3}\{\mathbf{e}_1, \mathbf{e}_2, \mathbf{e}_3\} for R3\mathbb{R}^3 is orthonormal under the dot product.

For v=(231)\mathbf{v} = \begin{pmatrix} 2 \\ 3 \\ 1 \end{pmatrix}: v=2e1+3e2+1e3\mathbf{v} = 2\mathbf{e}_1 + 3\mathbf{e}_2 + 1\mathbf{e}_3

The coefficients are ⟨v,e1⟩=2\langle \mathbf{v}, \mathbf{e}_1 \rangle = 2, ⟨v,e2⟩=3\langle \mathbf{v}, \mathbf{e}_2 \rangle = 3, ⟨v,e3⟩=1\langle \mathbf{v}, \mathbf{e}_3 \rangle = 1.

DefinitionOrthogonal Complement

For a subspace WW of inner product space VV, the orthogonal complement is: WβŠ₯={v∈V:⟨v,w⟩=0Β forΒ allΒ w∈W}W^\perp = \{\mathbf{v} \in V : \langle \mathbf{v}, \mathbf{w} \rangle = 0 \text{ for all } \mathbf{w} \in W\}

WβŠ₯W^\perp is a subspace, and for finite-dimensional VV: V=WβŠ•WβŠ₯V = W \oplus W^\perp and dim⁑(W)+dim⁑(WβŠ₯)=dim⁑(V)\dim(W) + \dim(W^\perp) = \dim(V).

TheoremParseval's Identity

If {e1,…,en}\{\mathbf{e}_1, \ldots, \mathbf{e}_n\} is an orthonormal basis for VV, then for any v∈V\mathbf{v} \in V: βˆ₯vβˆ₯2=βˆ‘i=1n∣⟨v,ei⟩∣2\|\mathbf{v}\|^2 = \sum_{i=1}^n |\langle \mathbf{v}, \mathbf{e}_i \rangle|^2

This generalizes the Pythagorean theorem to nn dimensions.

Remark

Orthonormal bases are computationally ideal: finding coordinates requires only inner products (no solving systems), and the norm formula is a simple sum of squares. The Gram-Schmidt process (studied next) provides an algorithm to construct orthonormal bases from arbitrary bases.