4.3. Planes#
A plane is a flat two-dimensional surface. The vector equation for a plane in \(\mathbb{R}^n\) is very similar to that of a line. We just need two direction vectors instead of just the one we needed for a line.
(Vector equation of a plane)
Let \(\vec{p}\) be a point in \(\mathbb{R}^n\) and \(\vec{d}_1\) and \(\vec{d}_2\) are two non-zero vectors in \(\mathbb{R}^n\) which are not parallel. The plane which passes through \(\vec{p}\) in the directions of \(\vec{d}_1\) and \(\vec{d}_2\) has the equation
where \(\vec{r}\) is a general point on the plane and \(t_1,t_2 \in \mathbb{R}\) are parameters (Fig. 4.7).
In other words, every point on a plane is obtained by adding some scalar multiples of any two vectors on the plane, \(\vec{d}_1\) and \(\vec{d}_2\), to the position vector of a point on the plane \(\vec{p}\). So the plane which passes through \(\vec{p}\) in the directions of \(\vec{d}_1\) and \(\vec{d}_2\). Note we need \(\vec{d}_1\) and \(\vec{d}_2\) not to be parallel else we would have only described a line again.
(The normal vector)
The normal vector to a plane is a vector that is perpendicular to that plane. If \(\vec{a}\) and \(\vec{b}\) are two vectors that lie on a plane then the normal vector is calculated using \(\vec{n} = \vec{a} \times \vec{b}\).
Recall that the dot product between two perpendicular vectors is zero. So if a plane is defined by the normal vector \(\vec{n} = (n_x, n_y, n_z)^\mathsf{T}\) and a point with position vector \(\vec{p}=(p_x, p_y, p_z)^\mathsf{T}\) which lies on the plane and if \((x,y,z)^\mathsf{T}\) is the position vector of another point the plane then
This is known as the point-normal form of a plane.
(Point-normal form of a plane)
The point-normal form of the plane in \(\mathbb{R}^3\) which passes through the point with position vector \(\vec{p}\) with normal vector \(\vec{n}\) is
where \(\vec{r}\) is the position vector of an arbitrary point on the plane.
A plane in \(\mathbb{R}^3\) passes through the three points with position vectors \(\vec{p}_1 = (2, 3, 1)^\mathsf{T}\), \(\vec{p}_2 = (1, 0, -1)^\mathsf{T}\) and \(\vec{p}_3 = (2, 1, 3)^\mathsf{T}\).
(i) Find the point-normal form of the plane;
Solution
First we need to calculate the normal vector to the plane. We can do this by calculating the cross product of any two vectors that line on the plane, since we know \(\vec{p}_1\), \(\vec{p}_2\) and \(\vec{p}_3\) lie on the plane then so must the vectors \(\vec{p}_2 - \vec{p}_1\) and \(\vec{p}_3 - \vec{p}_2\) (or any other combination of these points)
Using equation (4.2) with \(\vec{p} = \vec{p}_1\)
If we had chosen \(\vec{p} = \vec{p}_2\) instead
which was the same answer as before. The same applies for any other point on the plane.
(ii) Do the points with position vectors \(\vec{p}_4 = (1, 2, 1)^\mathsf{T}\) and \(\vec{p}_5 = (2, 4, 0)^\mathsf{T}\) lie on the plane?
Solution
Checking \(\vec{p}_4\)
so \(\vec{p}_4\) does not lie on the plane.
Checking \(\vec{p}_5\)
so \(\vec{p}_5\) does lie on the plane.
4.3.1. Intersection of planes in \(\mathbb{R}^3\)#
We distinguish between various arrangements of planes, which are defined in terms of their normal vectors. We saw that a plane is perpendicular to its normal vector \(\vec{n}\). Now, any other plane that for which \(\vec{n}\) lies on will be described as a plane perpendicular to the plane. This is equivalent to the two normal vectors being perpendicular. In a similar way if two distinct planes have the same normal vector then they are parallel.
Often we would like to know when and how two or more objects in \(\mathbb{R}^n\) meet. Similar to the lines in \(\mathbb{R}^2\) we present a finite list of arrangements for three planes meeting in \(\mathbb{R}^3\).
3 planes intersect at a single point: a unique solution
3 planes intersect on a single line: infinite solutions
2 planes coincide and intersect a third: infinite solutions
2 parallel planes intersect another: no solutions
Each plane intersects with 2 others: no solutions
3 parallel planes: no solutions
2 coincident planes parallel to another: no solutions
All 3 planes coincide: infinite solutions
It is possible to classify such arrangements for higher dimensions - but it makes more sense to do it purely algebraically. That is precisely what linear algebra is useful for.
Two non-parallel planes in \(\mathbb{R}^3\) are defined by the point-normal forms \(3x - 4y + z - 5 = 0\) and \(x + y - z - 2 = 0\) respectively. Find the intersection of these two planes
Solution
The normal vectors for these planes is given by the coefficients of \(x\), \(y\) and \(z\), therefore \(\vec{n}_1 = (3, -4, 1)^\mathsf{T}\) and \(\vec{n}_2 = (1, 1, -1)^\mathsf{T}\). The direction vector of the line of intersection must be parallel to both \(\vec{n}_1\) and \(\vec{n}_2\) (the intersecting line must lie in both planes), therefore we need to construct a vector perpendicular to both of these. A vector perpendicular to \(\vec{n}_1\) and \(\vec{n}_2\) can be found using \(\vec{n}_1 \times \vec{n}_2\)
In addition to the direction vector we need a point on the intersection line which must lie on both planes so we need to find a solution that satisfies
Adding these two equations gives
Let \(x = 1\) then \(y = -1\) and \(z = -2\) so the line of intersection between the two planes is