Projection of one vector on another?

AI Thread Summary
To find the projection of one vector onto another, the process involves calculating the dot product and using the lengths of the vectors. The length of the projection of vector u onto vector v can be expressed as the dot product of u and v divided by the magnitude of v. To determine the actual projection vector, multiply this length by the unit vector in the direction of v. The formula for the vector projection of u on v is given by (u·v/|v|²)v. Understanding these concepts is crucial for applications in vector analysis and least squares equations.
Joza
Messages
139
Reaction score
0
Projection of one vector on another??

Can anyone explain how to find the projection of one vector along another?

I thought it was scalar (dot) product, but then I realized it WASN'T. What is this then?

Anyone explain?
 
Physics news on Phys.org
projection of y onto x = x(x'x)-1x'y [= predicted value of y from the least squares equation "y = a + bx + u"].
 
The LENGTH of the projection of one vector onto another is (almost) the dot product.

To find the projection of \vec{u} on \vec{v}, draw the line from the "tip" of \vec{u} perpendicular with \vec{v}. You now have a right triangle with angle \theta between the angles and hypotenuse of length |\vec{u}|. The length of the projection, the "near side", is then |\vec{u}|cos(\theta). Since the dot product can be defined as \vec{u}\cdot\vec{v}= |\vec{u}||\vec{v}|cos(\theta), to get the length of the pojection, we need to get rid of that |\vec{v}| by dividing by it. The length of the projection of \vec{u} on \vec{v} is
\frac{\vec{u}\cdot\vec{v}}{|\vec{v}|}

In order to get the projection vector itself, we need to multiply that length by the unit vector in the direction of \vec{v}, which is, of course, \vec{v}/|\vec{v}|.
The vector projection of \vec{u} on \vec{v} is
\frac{\vec{u}\cdot\vec{v}}{|\vec{v}|^2}\vec{v}
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top