orthogonality
Orthogonality
You should know: vector norms
Overview
Two vectors are orthogonal if their dot product is zero — the generalization of 'perpendicular' to any number of dimensions. A set of vectors is orthogonal if every pair in the set is orthogonal, and orthonormal if additionally every vector has unit length. Orthogonal sets are enormously convenient in linear algebra because they behave like independent, non-interfering coordinate axes: computing a vector's coordinates in an orthonormal basis reduces to simple dot products instead of solving a linear system.
Intuition
Orthogonal vectors point in genuinely independent directions, with zero 'overlap' — like the x-axis and y-axis, moving along one doesn't get you any closer to or farther from anywhere along the other. This is why orthogonal bases are so useful: if you decompose a vector into orthogonal-axis components, each component can be found on its own, independent of the others, by simple projection, whereas with a skewed (non-orthogonal) basis you'd need to solve a coupled system to disentangle the coordinates.
Formal Definition
Vectors u and v in an inner product space are orthogonal if their inner product vanishes:
Worked Examples
Compute the dot product.
Answer: Yes — the dot product is 0, so u and v are orthogonal.
Practice Problems
Determine whether u = (2, -1, 3) and v = (1, 5, 1) are orthogonal.
Find the projection of v = (3, 4) onto u = (1, 1), and verify v minus the projection is orthogonal to u.
In digital signal processing, why are orthogonal basis signals (like sines and cosines of different frequencies) preferred for decomposing a signal into frequency components?
Quiz
Summary
- Vectors u and v are orthogonal when u·v = 0, generalizing perpendicularity to any dimension.
- Orthogonal vectors satisfy a Pythagorean identity: ‖u+v‖² = ‖u‖²+‖v‖².
- Projection onto u, proj_u(v) = (v·u/u·u)u, decomposes v into components along and perpendicular to u.
References
- WebsiteWikipedia — Orthogonality
Mathematics