What is the magnitude of a vector <x, y>?
√(x^2 + y^2)
How would you add <a, b> and <c, d>?
<a + c, b + d>
How would you multiply vectors a and b?
ax * bx + ay * by
Given an sas, how would you find the dot product?
|a||b|cos(x)
How do you find the angle between two vectors?
a*b / |a||b| = cos(x)