If I have three planes:
How do you determine if the planes are parallel.
And if they're not, how do you work out the line of intersection?
Thanks
1. Two planes are parallel if their normal vectors are collinear.
With your examplebecause there doesn't exist a
such that
2. To get the line of intersection::
........
........
Now set a = t. Then you get:
which can be simplified to:
which is the equation of the line of intersection.
3. The next 2 lines should be calculated in just the same way. Have fun!
EDIT: The attached sketch shows the special cases:


Two planes are parallel if and only if their "normal vectors" are parallel. Two planes, if not parallel, will intersect in a straight line.
Three planes are parallel if and onlyif they are parallel in pairs- which means, again, if and only if all three normal vectors are parallel. You can determine whether or not two vectors are parallel by dividing the corresponding components. They are parallel if and only if all three fractions are the equal.
Three planes typically intersect in a point not a plane. It may happen that the "line of intersection" of the first two planes is the same as the line of intersection of the last two- in that special case, all three planes intersect in a line. To find the line or point of intersection, attempt to solve the three equations simultaneously. If you can solve for all of a, b, and c, that is the point of intersection. If it turns out that after reducing from three equations in three variables to two equations in two variables, the two equations are the same, you can select either of the remaining variables as a "parameter" and solve for the other two in terms of that parameter. That will give parametric equations for the "line of intersection".
But, again, three planes intersecting in a line is a very unusual situation.