Lines and Planes in 3D
Welcome to your lesson on lines and planes in three-dimensional space! In this lesson, we’ll explore how to describe and work with lines and planes in 3D using parametric equations, vector forms, and plane equations. By the end, you'll be able to confidently find equations for lines and planes, determine intersections, and solve problems involving these fundamental geometric objects. Let’s dive into the world of 3D geometry—where vectors fly and planes stretch infinitely! 🛫
Parametric Equations of a Line
Let’s start with the idea of a line in three-dimensional space. Unlike in two dimensions, where a line can be described by a simple slope-intercept form ($y = mx + b$), in three dimensions we need to use vectors and parameters.
The Vector Form of a Line
A line in 3D can be uniquely described by:
- A point on the line, called the position vector $\mathbf{r}_0 = \langle x_0, y_0, z_0 \rangle$
- A direction vector $\mathbf{d} = \langle a, b, c \rangle$, which shows the direction the line is heading.
The general vector form of a line is:
$$
$\mathbf{r}(t) = \mathbf{r}_0 + t \mathbf{d}$
$$
where $t$ is a parameter that can take any real value. This equation tells us that if we start at the point $\mathbf{r}_0$ and move in the direction of $\mathbf{d}$, we trace out the line as $t$ changes.
Parametric Equations
From the vector form, we can break it down into three separate parametric equations for each coordinate:
$$
$x(t) = x_0 + a t$
$$
$$
$y(t) = y_0 + b t$
$$
$$
$z(t) = z_0 + c t$
$$
These are the parametric equations of the line. They give us the $x$, $y$, and $z$ coordinates of any point on the line as a function of $t$.
Example: Finding the Parametric Equations of a Line
Let’s say we want to find the parametric equations of a line passing through the point $P(2, -1, 3)$ and parallel to the vector $\mathbf{d} = \langle 4, -2, 5 \rangle$.
We have:
- $\mathbf{r}_0 = \langle 2, -1, 3 \rangle$
- $\mathbf{d} = \langle 4, -2, 5 \rangle$
So the parametric equations are:
$$
$x(t) = 2 + 4t$
$$
$$
$y(t) = -1 - 2t$
$$
$$
$z(t) = 3 + 5t$
$$
This describes all points on the line as $t$ varies. 🎯
Symmetric Equations
We can also write the line in what’s called symmetric form by solving each parametric equation for $t$:
$$
t = $\frac{x - x_0}{a}$ = $\frac{y - y_0}{b}$ = $\frac{z - z_0}{c}$
$$
In our example, the symmetric form is:
$$
$\frac{x - 2}{4}$ = $\frac{y + 1}{-2}$ = $\frac{z - 3}{5}$
$$
This is another useful way to represent the line, especially for solving systems of equations.
Real-World Example: Flight Path of a Plane
Imagine an airplane flying from point $A(0, 0, 0)$ to point $B(300, 400, 500)$ (in miles). The direction vector is $\mathbf{d} = \langle 300, 400, 500 \rangle$. If the plane is at $A$ at time $t=0$, the parametric equations for its flight path are:
$$
$x(t) = 300t$
$$
$$
$y(t) = 400t$
$$
$$
$z(t) = 500t$
$$
If you want to know where the plane is after 1 hour, just plug in $t = 1$:
$$
x(1) = 300, \quad y(1) = 400, \quad z(1) = 500
$$
So the plane is at $(300, 400, 500)$ miles after an hour. ✈️
Equations of a Plane
Now that we’ve covered lines, let’s move on to planes. A plane in 3D is a flat, infinite surface. We can describe it with a simple equation.
The General Form of a Plane
A plane can be described by a single linear equation of the form:
$$
Ax + By + Cz = D
$$
where $A$, $B$, and $C$ are constants that describe the orientation of the plane, and $D$ is a constant that sets its position.
The Normal Vector
The vector $\mathbf{n} = \langle A, B, C \rangle$ is called the normal vector of the plane. It’s perpendicular (normal) to every line that lies on the plane. The direction of $\mathbf{n}$ tells us how the plane is oriented in space.
Finding the Equation of a Plane
To find the equation of a plane, we need either:
- A point on the plane and a normal vector, or
- Three points that lie on the plane.
Case 1: A Point and a Normal Vector
Let’s say we know a point $P_0(x_0, y_0, z_0)$ on the plane and the normal vector $\mathbf{n} = \langle A, B, C \rangle$. The equation of the plane can be found using the formula:
$$
A(x - x_0) + B(y - y_0) + C(z - z_0) = 0
$$
Example: Plane Through a Point with a Given Normal Vector
Suppose we know a plane passes through the point $P(1, 2, 3)$ and has a normal vector $\mathbf{n} = \langle 2, -1, 4 \rangle$. We can plug these into the formula:
$$
2(x - 1) - 1(y - 2) + 4(z - 3) = 0
$$
Simplifying this, we get:
$$
2x - y + 4z - 8 = 0
$$
This is the equation of the plane. 📐
Case 2: Three Points on the Plane
If we’re given three points $P_1$, $P_2$, and $P_3$ that lie on the plane, we can find the normal vector by taking the cross product of two vectors that lie on the plane.
Let’s say:
- $P_1 = (x_1, y_1, z_1)$
- $P_2 = (x_2, y_2, z_2)$
- $P_3 = (x_3, y_3, z_3)$
We form two vectors in the plane:
$$
$\mathbf{u}$ = \langle x_2 - x_1, y_2 - y_1, z_2 - z_1 \rangle
$$
$$
$\mathbf{v}$ = \langle x_3 - x_1, y_3 - y_1, z_3 - z_1 \rangle
$$
Then, the normal vector $\mathbf{n}$ is given by the cross product:
$$
$\mathbf{n} = \mathbf{u} \times \mathbf{v}$
$$
Once we have $\mathbf{n}$, we can use the formula from Case 1 with any of the three points to find the equation of the plane.
Example: Finding the Plane Through Three Points
Let’s find the equation of the plane passing through the points:
- $P_1 = (1, 0, 0)$
- $P_2 = (0, 1, 0)$
- $P_3 = (0, 0, 1)$
First, we find the vectors:
$$
$\mathbf{u}$ = \langle 0 - 1, 1 - 0, 0 - 0 \rangle = \langle -1, 1, 0 \rangle
$$
$$
$\mathbf{v}$ = \langle 0 - 1, 0 - 0, 1 - 0 \rangle = \langle -1, 0, 1 \rangle
$$
Now, we compute the cross product:
$$
$\mathbf{n} = \mathbf{u} \times \mathbf{v} = $
$\begin{vmatrix}$
$\mathbf{i} & \mathbf{j} & \mathbf{k} \\$
-1 & 1 & 0 \\
-1 & 0 & 1
$\end{vmatrix}$
$$
Evaluating the determinant:
$$
$\mathbf{n}$ = $\mathbf{i}$($1 \cdot 1$ - $0 \cdot 0$) - $\mathbf{j}$(-$1 \cdot 1$ - $0 \cdot$ -1) + $\mathbf{k}$(-$1 \cdot 0$ - $1 \cdot$ -1)
$$
$$
$\mathbf{n}$ = \langle 1, 1, 1 \rangle
$$
So the normal vector is $\mathbf{n} = \langle 1, 1, 1 \rangle$. We now use the point $P_1(1, 0, 0)$ to find the equation of the plane:
$$
1(x - 1) + 1(y - 0) + 1(z - 0) = 0
$$
$$
x + y + z - 1 = 0
$$
This is the equation of the plane. 🌟
Distance from a Point to a Plane
Sometimes, we want to find the shortest distance from a point $Q(x_1, y_1, z_1)$ to a plane. The formula is:
$$
\text{Distance} = \frac{|Ax_1 + By_1 + Cz_1 - D|}{\sqrt{A^2 + B^2 + C^2}}
$$
Example: Distance from a Point to a Plane
Let’s find the distance from the point $Q(2, 3, 4)$ to the plane $2x - y + 4z - 8 = 0$.
We plug into the formula:
$$
\text{Distance} = $\frac{|2(2) - 1(3) + 4(4) - 8|}{\sqrt{2^2 + (-1)^2 + 4^2}}$
$$
$$
= $\frac{|4 - 3 + 16 - 8|}{\sqrt{4 + 1 + 16}}$ = $\frac{|9|}{\sqrt{21}}$ = $\frac{9}{\sqrt{21}}$ $\approx 1$.96
$$
So the distance from the point to the plane is about 1.96 units. 🎯
Intersection of a Line and a Plane
We often want to find where a line intersects a plane. To do this, we:
- Start with the parametric equations of the line.
- Substitute them into the plane equation.
- Solve for the parameter $t$.
- Use $t$ to find the point of intersection.
Example: Line-Plane Intersection
Let’s find where the line:
$$
x(t) = 1 + 2t, \quad y(t) = -1 + t, \quad z(t) = 3 - t
$$
intersects the plane:
$$
x + y + z = 4
$$
We substitute the parametric equations into the plane equation:
$$
(1 + 2t) + (-1 + t) + (3 - t) = 4
$$
Simplifying:
$$
1 + 2t - 1 + t + 3 - t = 4
$$
$$
$3 + 2t = 4$
$$
$$
$2t = 1$
$$
$$
$t = \frac{1}{2}$
$$
Now we plug $t = \frac{1}{2}$ back into the parametric equations to find the intersection point:
$$
x$\left($$\frac{1}{2}$$\right)$ = 1 + $2\left($$\frac{1}{2}$$\right)$ = 2
$$
$$
y$\left($$\frac{1}{2}$$\right)$ = -1 + $\frac{1}{2}$ = -0.5
$$
$$
z$\left($$\frac{1}{2}$$\right)$ = 3 - $\frac{1}{2}$ = 2.5
$$
So the line intersects the plane at $(2, -0.5, 2.5)$. 📍
Conclusion
In this lesson, we’ve covered the foundations of lines and planes in three-dimensional space. We learned how to write parametric equations for lines, how to find the general form of a plane, and how to solve for intersections between lines and planes. These tools are essential in many real-world applications, from computer graphics to engineering design. Keep practicing, and soon you’ll be navigating 3D space with ease! 🚀
Study Notes
- A line in 3D can be represented using a point and a direction vector:
$$\mathbf{r}(t) = \mathbf{r}_0 + t \mathbf{d}$$
- Parametric equations of a line:
$$
x(t) = x_0 + a t, \quad y(t) = y_0 + b t, \quad z(t) = z_0 + c t
$$
- Symmetric form of a line:
$$\frac{x - x_0}{a} = \frac{y - y_0}{b} = \frac{z - z_0}{c}$$
- A plane can be described by the general equation:
$$Ax + By + Cz = D$$
- The normal vector of a plane is $\mathbf{n} = \langle A, B, C \rangle$.
- Equation of a plane through a point $(x_0, y_0, z_0)$ with normal vector $\langle A, B, C \rangle$:
$$A(x - x_0) + B(y - y_0) + C(z - z_0) = 0$$
- To find the plane through three points $P_1$, $P_2$, $P_3$, find two vectors in the plane and take their cross product to get the normal vector.
- Distance from a point $(x_1, y_1, z_1)$ to a plane $Ax + By + Cz = D$:
$$\text{Distance} = \frac{|Ax_1 + By_1 + Cz_1 - D|}{\sqrt{A^2 + B^2 + C^2}}$$
- To find the intersection of a line and a plane, substitute the parametric equations of the line into the plane equation and solve for $t$. Then plug $t$ back into the parametric equations to find the intersection point.
