PDA

View Full Version : Perpendicular planes


mathman99
Jul3-09, 02:22 AM
How to find (equations of) two perpendicular planes intersecting to a plane (say 3x+y+z=10) in a point (say 1,2,5 ).
All the three planes are perpendicular to each other and intersecting at a single point (say (1,2,5) in this example)
If possible explain it in vector form and non-vector forms.

Thanks in advance.

Дьявол
Jul3-09, 03:19 AM
So you got three perpendicular planes:

Ax+By+Cz+D=0
Ex+Fy+Gz+H=0
Ix+Jy+Kz+W=0

If two planes are perpendicular to each other then, then their normal vectors are also perpendicular to each other.

The normal vectors are (A,B,C), (E,F,G) and (I,J,K). This means that the scalar product (A,B,C) o (E,F,G) = 0 , (A,B,C) o (I,J,K) =0 , (E,F,G) o (I,J,K)=0

Also the vector product of two of them gives us the third vector.
For ex. (A,B,C) x (E,F,G) = (I,J,K)

The intersection point is standing on all of the planes. So that if it is (x_1,y_1,z_1) then:
Ax_1+By_1+Cz_1+D=0
Ex_1+Fy_1+Gz_1+H=0
Ix_1+Jy_1+Kz_1+W=0


Regards.