An orthonormal basis converts every routine vector operation into something that uses only dot products — no system solving, no matrix inversion, no (AᵀA)⁻¹ factor. The table below collects each operation alongside its formula in an orthonormal basis and a brief note on why orthonormality makes it simple, including Parseval's identity for length and Bessel's inequality for partial projections.
| Operation |
Formula in an orthonormal basis {q1, …, qk} |
Why it's simple |
| Coordinate of x along qi |
ci = qi · x |
one dot product replaces solving a system |
| Reconstruction of x from its coordinates |
x = Σi (qi · x) qi (if {qi} spans the space) |
sum of k dot-product-weighted basis vectors |
| Squared length ‖x‖² |
Σi (qi · x)² (Parseval, when {qi} spans) |
squared length = sum of squared coordinates |
| Inner product x · y |
Σi (qi · x)(qi · y) |
inner product = ordinary dot product of coordinate vectors |
| Projection onto Span{q1, …, qk} |
Σi (qi · x) qi |
no (AᵀA)⁻¹ needed; independent dot products |
| Squared length of that projection |
Σi (qi · x)² ≤ ‖x‖² (Bessel; equality iff x ∈ span) |
truncated Parseval; deficit measures distance to span |