PDA

View Full Version : projection


gunnar
Oct16-04, 06:43 PM
How can I find the projection of the vector (2,2,1) on the plane that has the equation z=x-y?

Muzza
Oct17-04, 04:41 AM
First project it on the plane's normal vector (call the resulting vector x), then the vector you're searching for is (2, 2, 1) - x.

gunnar
Oct17-04, 06:02 AM
How do I find the normal vector of the plane?

Muzza
Oct17-04, 06:17 AM
The plane's equation can be written x - y + z = 0, so a normal vector is (1, -1, 1) (the coefficients of the variables).

gunnar
Oct17-04, 06:39 AM
so the projection of the vector (2,2,1) onto the plane (z=x-y) is
(1,3,0)?

Muzza
Oct17-04, 06:46 AM
How did you arrive at that? I got a different answer.

gunnar
Oct17-04, 07:18 AM
I subtracted the vectors, guess it's more complicated than that?

HallsofIvy
Oct17-04, 01:32 PM
Yes, it's more complicated than that. You have to go back to Muzza's original response and DO what he said there!

mathwonk
Oct17-04, 06:48 PM
to project v onto w != 0, find c such that v-cw is perpendicular to w, i.e. solve the equation w.(v-cw) = 0. i.e. solve w.v = c w.w, i.e. let c = w.v/w.w. then the projection is cw, I think, but i am geting confused looking at my fingers and doing this in my head.

anyway you get v = cw + (v-cw), where the first term is parallel to w and the second term is perpendicular to w, and so surely that does it.

gunnar
Oct18-04, 09:46 AM
This is quite a puzzle but thanks for helping, I think I've figured this out.