Abstract Geometry and Orthogonality
The dot product of Unit 3 gave its geometry. An inner product generalizes this to any vector space. It must be symmetric, linear, and positive definite ( for ). From it come the norm (length) and the angle via .
Two vectors are orthogonal when . An orthonormal basis is orthogonal and every vector has length 1. In such a basis, coordinates are trivial to compute: the -th coordinate of is .
| Concept | Definition | Key Property |
|---|---|---|
| Orthogonal Set | for | Automatically linearly independent |
| Positive Definite | for | Ensures valid vector lengths |
Projections and Gram-Schmidt
Orthogonal projection finds the closest point in a subspace to a given vector. The error is orthogonal to all of . This drives least-squares approximation: when has no exact solution, projecting onto the column space gives the best approximate fit.
The Gram–Schmidt process systematically turns any basis into an orthonormal one by subtracting components along chosen vectors.
Common pitfall: Assuming an orthogonal projection is just truncating extra coordinates. Projection finds the nearest vector in via a geometric construction, and coordinates are trivial only in an orthonormal basis, not a general one.