- #1
gunnar
- 39
- 0
How can I find the projection of the vector (2,2,1) on the plane that has the equation z=x-y?
Last edited:
The projection of a vector on a plane is the component of the vector that lies in the direction of the plane's normal vector. It is the shadow of the vector on the plane's surface.
To calculate the projection of a vector (u) on a plane with a normal vector (n), you can use the formula: u_proj = (u * n) * n, where "*" represents the dot product between the two vectors.
The projection of the vector (2,2,1) on the xy-plane will have the same x and y components as the original vector, but the z component will be zero. This means that the projected vector will lie completely on the xy-plane.
The projection of a vector on a plane can be useful in various applications, such as in physics, engineering, and computer graphics. It can help to simplify calculations and visualize vectors in a simpler form.
Yes, the projection of a vector on a plane can be negative. This happens when the angle between the vector and the plane's normal vector is obtuse. In this case, the projection will have a negative magnitude in the opposite direction of the plane's normal vector.