The dot product of two vectors u and v is the sum of products of corresponding components: u · v = u₁v₁ + u₂v₂ + ... + uₙvₙ. It measures alignment between vectors and connects to angle via cos(θ) = (u · v)/(‖u‖‖v‖). The dot product is zero precisely when vectors are orthogonal.
You already know how to add vectors component-by-component and scale them by scalars. The dot product is a new kind of operation: it takes two vectors and returns a single number (a scalar), not another vector. The formula is straightforward — multiply corresponding components and add all the products: u · v = u₁v₁ + u₂v₂ + … + uₙvₙ. What makes this operation important is not the arithmetic but what the resulting number means.
The dot product measures how much two vectors "agree in direction." The key relationship is the angle formula: cos(θ) = (u · v) / (‖u‖ ‖v‖), where θ is the angle between u and v and ‖u‖, ‖v‖ are their lengths (magnitudes). This lets you interpret the sign and size of the dot product geometrically. If u · v > 0, the angle is acute — the vectors point roughly the same way. If u · v = 0, the angle is exactly 90°, meaning the vectors are orthogonal (perpendicular). If u · v < 0, the angle is obtuse — the vectors point more away from each other than toward each other.
Orthogonality deserves special attention because it comes up constantly in linear algebra. Two vectors are orthogonal if and only if their dot product is zero. This is a purely algebraic test for a geometric property: no trigonometry required. From your work with vector addition, you know that vectors can be decomposed and recombined; orthogonal vectors are the cleanest building blocks because they carry zero "overlap" with each other.
The dot product also connects directly to projections. The scalar projection of u onto v — how much of u lies along v's direction — is exactly (u · v) / ‖v‖. If you have been thinking of u as a force and v as a direction of motion, this projection is the component of the force doing useful work. That physical interpretation is why the dot product appears throughout mechanics, electromagnetism, and signal processing.