Across the sections above, the dot product appears in seven distinct roles — measuring length, computing angles, testing orthogonality, classifying the angular relationship by sign, bounding products of vectors, and producing two kinds of projection. The table below collects all of these in a single reference, organized around the question each role answers and the formula that does the work. Every entry below is built from the same operation a · b = Σ aibi — the geometric variety on the page comes from how that one number is interpreted and combined with the norm.
| Question |
Use of the dot product |
Result |
| What is the length of v? |
√(v · v) |
the norm ‖v‖ |
| What angle do a and b make? |
cos θ = (a · b) / (‖a‖ ‖b‖), then arccos |
an angle θ in [0, π] |
| Are a and b orthogonal? |
check whether a · b = 0 |
yes / no |
| Is the angle acute, right, or obtuse? |
read off the sign of a · b |
positive / zero / negative → acute / right / obtuse |
| How big can a · b be given the lengths? |
|a · b| ≤ ‖a‖ ‖b‖ (Cauchy–Schwarz) |
a bound; equality only for parallel vectors |
| What is the signed length of a's shadow on b? |
(a · b) / ‖b‖ |
scalar projection compb a |
| What is a's shadow on b as a vector? |
((a · b) / ‖b‖²) b |
vector projection projb a, parallel to b |