Michael S. answered 08/09/20
Engineering, Education Student, Statics, Calculus, Materials, Thermo.
The easiest way to find the angle between two vectors is to follow this formula.
cos(Θ) = (v • w)/(|v| * |w|)
v • w is the dot product n this case
3i • (9i + 2j) = 3*9 + 0*2 notice there is a hidden 0j in v
v • w = 27
|v| is the magnitude of v (it uses the same symbol as absolute value) This is the length of the vector.
The magnitude formula is √(v12 + v22)
|v| = √(32 + 02) = √(32) = 3
|w| = √(92 + 22) = √(85)
So now the angle is
cos(Θ) = 27/(3*√(85)) = 0.97618
Using trigonometry
Θ = acos(0.97618) = 12.53º
This is the angle between the vectors.