Orthonormal Sets and Matrices
A set of vectors is orthonormal if every vector is a unit vector and every pair is orthogonal: for and . The standard basis vectors are the simplest example.
If we stack orthonormal vectors in as the columns of a matrix , then . The -entry of is , which is when and otherwise. This means is the left inverse of .
Because , the columns of are linearly independent — the transpose gives you coordinates for free, with no solving required. Any subspace has an orthonormal basis, obtainable via the Gram-Schmidt algorithm.
Formal View
Why This Matters
Orthonormal bases make every computation easier — they remove the need to solve systems to find coordinates.
- The QR decomposition factors any matrix as where has orthonormal columns — the foundation of stable numerical linear algebra
- Wavelets (used in JPEG 2000 and audio compression) are orthonormal bases for function spaces
- Quantum states are unit vectors and measurement bases are orthonormal — all of quantum computing relies on this structure
Quiz
If has orthonormal columns, which identity is guaranteed?
An orthonormal set of vectors is always linearly independent.
Common Mistakes
- Confusing orthonormal ( and ) with just orthogonal (perpendicular but not necessarily unit length).
- Thinking implies — the latter requires to be square.
- Confusing the Gram-Schmidt output (orthonormal basis for the same span) with a change of the actual subspace.