What is the projection of <3, -6, 2><3,6,2> onto <1, 1, 1><1,1,1>?

1 Answer
Mar 5, 2017

The vector projection is <-1/3,-1/3,-1/3><13,13,13>, the scalar projection is -sqrt3/333.

Explanation:

Given veca= < 3, -6, 2>a=<3,6,2> and vecb= < 1,1,1 >,b=<1,1,1>, we can find proj_(vecb)vecaprojba, the vector projection of vecaa onto vecbb using the following formula:

proj_(vecb)veca=((veca*vecb)/(|vecb|))vecb/|vecb|projba=⎜ ⎜ ⎜abb⎟ ⎟ ⎟bb

That is, the dot product of the two vectors divided by the magnitude of vecbb, multiplied by vecbb divided by its magnitude. The second quantity is a vector quantity, as we divide a vector by a scalar. Note that we divide vecbb by its magnitude in order to obtain a unit vector (vector with magnitude of 11). 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 aa onto bb is comp_(vecb)veca=(a*b)/(|b|)compba=ab|b|, also written |proj_(vecb)veca|projba.

We can start by taking the dot product of the two vectors.

veca*vecb=< 3, -6, 2> * < 1,1,1 >ab=<3,6,2><1,1,1>

=> (3*1)+(-6*1)+(2*1)(31)+(61)+(21)

=>3-6+2=-136+2=1

Then we can find the magnitude of vecbb by taking the square root of the sum of the squares of each of the components.

|vecb|=sqrt((b_x)^2+(b_y)^2+(b_z)^2)b=(bx)2+(by)2+(bz)2

|vecb|=sqrt((1)^2+(1)^2+(1)^2)b=(1)2+(1)2+(1)2

=>sqrt(1+1+1)=sqrt(3)1+1+1=3

And now we have everything we need to find the vector projection of vecaa onto vecbb.

proj_(vecb)veca=(-1)/sqrt3*(< 1,1,1 >)/sqrt3projba=13<1,1,1>3

=>(- < 1,1,1 >)/3<1,1,1>3

=><-1/3,-1/3,-1/3><13,13,13>

The scalar projection of vecaa onto vecbb is just the first half of the formula, where comp_(vecb)veca=(a*b)/(|b|)compba=ab|b|. Therefore, the scalar projection is -1/sqrt313. You can rationalize the denominator to yield -sqrt3/333 equivalently.

Hope that helps!