Dot Product is Just Mutual Understanding in Disguise
Dot product = compatibility score
Teacher writes: [a1,a2] . [b1,b2] = a1b1+a2b2. Class: got it. Actually: no clue, just passing the test.
Dot product = mutual understanding. You go east, they go east = high score. You go east, they go west = negative. You go east, they go north = zero (different frequencies entirely).
Formula: a . b = |a| x |b| x cos(theta). Translation: Your energy x Their energy x Compatibility factor.
Real uses: Recommendation systems - your taste vector dot another user's = how similar your tastes are. Transformer attention - QxK dot product measures word relevance. Projection - (a.b)/|b| = how much you actually contributed vs how much you think you contributed.
Next time you see dot product, think: oh, calculating compatibility. You'll never forget.