The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes