Every quantity built in this page — norm, distance, angle, the orthogonality criterion, and the projection formula on the projections page — is constructed from a single inner product through a small family of formulas. The table below collects each induced quantity alongside its general definition in any inner product space, the concrete dot-product form in ℝⁿ, and a pointer back to the section that introduced it.
| Quantity induced by ⟨·, ·⟩ |
General definition |
Standard dot-product instance in ℝⁿ |
Where introduced |
| Norm (length) of a vector |
‖v‖ = √⟨v, v⟩ |
√(v · v) = √(v1² + … + vn²) |
obj3 — Length |
| Unit vector / normalization |
v̂ = v / ‖v‖ |
v / √(v · v) |
obj3 — Length |
| Distance between vectors |
d(u, v) = ‖u − v‖ |
√Σi (ui − vi)² |
obj4 — Distance |
| Angle between vectors |
cos θ = ⟨u, v⟩ / (‖u‖ · ‖v‖) |
(u · v) / (‖u‖ · ‖v‖) |
obj5 — Angle Between Vectors |
| Orthogonality |
u ⊥ v ⟺ ⟨u, v⟩ = 0 |
u · v = 0 |
obj5 — Angle Between Vectors (special case θ = π/2) |
| Projection of u onto a nonzero v |
projv(u) = (⟨u, v⟩ / ⟨v, v⟩) · v |
((u · v) / (v · v)) · v |
covered on the projections page |