What is the projection of #<6,5,3 ># onto #<2,-1,8 >#?
1 Answer
The vector projection is
Explanation:
Given
#proj_(vecb)veca=((veca*vecb)/(|vecb|))vecb/|vecb|# That is, the dot product of the two vectors divided by the magnitude of
#vecb# , multiplied by#vecb# divided by its magnitude. The second quantity is a vector quantity, as we divide a vector by a scalar. Note that we divide#vecb# by its magnitude in order to obtain a unit vector (vector with magnitude of#1# ). You might notice that the first quantity is scalar, as we know that when we take the dot product of two vectors, the resultant is a scalar.Therefore, the scalar projection of
#a# onto#b# is#comp_(vecb)veca=(a*b)/(|b|)# , also written#|proj_(vecb)veca|# .
We can start by taking the dot product of the two vectors.
Then we can find the magnitude of
And now we have everything we need to find the vector projection of
You can distribute the coefficient to each component of the vector and write as:
The scalar projection of
Hope that helps!