A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Orthonormal Bases

College Depth 79 in the knowledge graph I know this Set as goal
122topics build on this
321prerequisites beneath it
See this on the map →
Basis and DimensionOrthogonalityBessel's Inequality and Parseval's IdentityGram-Schmidt Orthogonalization Process+1 more
orthonormal ONB orthogonal matrix coordinates Fourier coefficients

Core Idea

An orthonormal basis (ONB) is a basis in which every vector has unit norm and every pair of distinct vectors is orthogonal. Orthonormal bases make coordinate computation trivial: the coordinate of a vector v with respect to basis vector uᵢ is simply ⟨v, uᵢ⟩. A matrix whose columns form an orthonormal basis is called an orthogonal matrix Q, satisfying QᵀQ = I (so Qᵀ = Q⁻¹). Orthogonal matrices preserve lengths and angles, making them the natural matrices for rotations and reflections. Orthonormal bases are the 'gold standard' basis choice in both theory and computation.

How It's Best Learned

Verify that QᵀQ = I for rotation matrices and reflection matrices in R². Observe that computing coordinates in an orthonormal basis via dot products is far simpler than solving a linear system as required for non-orthogonal bases.

Common Misconceptions

Explainer

From your work on orthogonality and bases, you know two ideas separately: vectors can be perpendicular to each other (orthogonality), and a basis is a linearly independent spanning set. An orthonormal basis (ONB) combines both properties at once and adds a normalization condition: every basis vector has length exactly 1, and every pair of distinct basis vectors is perpendicular. The standard basis {e₁, e₂, e₃} in ℝ³ is the simplest example — unit vectors along each axis, mutually perpendicular.

The great computational payoff of an ONB is coordinate extraction via inner products. Recall that with a general basis, finding coordinates requires solving a linear system. With an ONB {u₁, u₂, ..., uₙ}, the coordinate of any vector v with respect to uᵢ is simply the inner product ⟨v, uᵢ⟩. No system-solving required — just n dot products. This works because orthogonality eliminates all cross-terms: when you expand v in the basis and take the inner product with uᵢ, every term involving a different basis vector drops to zero. The formula v = ⟨v, u₁⟩u₁ + ⟨v, u₂⟩u₂ + ... + ⟨v, uₙ⟩uₙ is one of the most useful formulas in linear algebra.

When the column vectors of a square matrix Q form an ONB, something remarkable happens: QᵀQ = I, so Qᵀ = Q⁻¹. This means you can invert Q just by transposing it — no row reduction needed. Such matrices are called orthogonal matrices. Geometrically, they represent transformations that preserve lengths and angles: ‖Qv‖ = ‖v‖ and ⟨Qu, Qv⟩ = ⟨u, v⟩. Every rotation and reflection is an orthogonal matrix. This length-preservation property is what makes orthogonal matrices the natural choice for representing rigid motions and for numerically stable computations.

The standard basis is one ONB, but there are infinitely many others. Any rotation of the standard basis produces another ONB. This flexibility is central to applications: in Fourier analysis, the sines and cosines form an ONB for function spaces; in data analysis (PCA), you find an ONB aligned with the directions of maximum variance. The Gram-Schmidt process (your next topic) provides the algorithm for constructing an ONB from any linearly independent set. Once you have it, coordinates become dot products, inverses become transposes, and the geometry of the space becomes transparent.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionSine, Cosine, and Tangent RatiosTrigonometric Ratios ReviewVectors in Two DimensionsVector Operations: Addition, Subtraction, and Scalar MultiplicationDot Product (Inner Product in R^n)Inner Product SpacesOrthogonalityOrthonormal Bases

Longest path: 80 steps · 321 total prerequisite topics

Prerequisites (2)

Leads To (3)