2. Lines, Planes, and Vector-Valued Functions

Equations Of Lines And Planes

Equations of Lines and Planes in Space

students, in this lesson you will learn how to describe straight lines and flat surfaces in three-dimensional space using vectors and equations ✨ These ideas are a foundation for understanding motion, geometry, and later topics in multivariable calculus. By the end of this lesson, you should be able to explain what a line and a plane look like in space, write their equations in different forms, and use those equations to solve geometry problems.

Learning objectives:

  • Explain the main ideas and terminology behind equations of lines and planes.
  • Write equations of lines and planes using points, direction vectors, and normal vectors.
  • Apply multivariable calculus reasoning to geometric problems involving lines and planes.
  • Connect lines and planes to vector-valued functions and motion in space.
  • Use examples to interpret equations in a real-world context.

Lines in Three-Dimensional Space

A line in space is not described by just one number the way a number line is. Instead, we use vectors to show both a starting point and a direction. Imagine a drone flying through the air in a straight path 🚁 If you know where it starts and the direction it moves, you can describe its whole path.

Suppose a line passes through the point $P_0(x_0, y_0, z_0)$ and has direction vector $\mathbf{v} = \langle a, b, c \rangle$. Then every point on the line can be written as

$$\mathbf{r}(t) = \mathbf{r}_0 + t\mathbf{v}$$

where $\mathbf{r}_0 = \langle x_0, y_0, z_0 \rangle$ and $t$ is a real number. This is called the vector equation of the line.

The same line can also be written in parametric form:

$$x = x_0 + at, \quad y = y_0 + bt, \quad z = z_0 + ct$$

These equations mean that when $t = 0$, you are at the starting point $P_0$, and as $t$ changes, you move along the direction of $\mathbf{v}$.

Example: a line through a point

Find the line through $P_0(2, -1, 4)$ with direction vector $\langle 3, 0, -2 \rangle$.

Using the vector equation,

$$\mathbf{r}(t) = \langle 2, -1, 4 \rangle + t\langle 3, 0, -2 \rangle$$

So the parametric equations are

$$x = 2 + 3t, \quad y = -1, \quad z = 4 - 2t$$

Notice that $y$ is always $-1$. That means the line stays in the plane $y = -1$ while moving in the $x$ and $z$ directions.

Symmetric form of a line

If none of the components of the direction vector are zero, the parametric equations can be rewritten in symmetric form:

$$\frac{x - x_0}{a} = \frac{y - y_0}{b} = \frac{z - z_0}{c}$$

This form shows that all three coordinates change together as the same parameter changes. However, if one component is zero, that coordinate is constant and the symmetric form must be adjusted.

For example, if $b = 0$, then the line is parallel to the $xz$-plane, and the equation $y = y_0$ is part of its description.

Planes in Three-Dimensional Space

A plane is a flat surface that extends forever in two directions. Think of a tabletop, a wall, or the surface of a calm lake 🌊 In space, a plane is described by a point on the plane and a vector perpendicular to it, called a normal vector.

If a plane passes through $P_0(x_0, y_0, z_0)$ and has normal vector $\mathbf{n} = \langle A, B, C \rangle$, then the equation of the plane is

$$A(x - x_0) + B(y - y_0) + C(z - z_0) = 0$$

This is called the point-normal form of a plane.

Why does this work? Any point $P(x, y, z)$ on the plane creates a vector $\overrightarrow{P_0P}$ lying in the plane. Since $\mathbf{n}$ is perpendicular to every vector in the plane, their dot product must be zero:

$$\mathbf{n} \cdot \overrightarrow{P_0P} = 0$$

That gives the equation above.

Example: equation of a plane from a point and normal vector

Find the plane through $P_0(1, 2, -3)$ with normal vector $\langle 4, -1, 2 \rangle$.

Use point-normal form:

$$4(x - 1) - 1(y - 2) + 2(z + 3) = 0$$

Now simplify:

$$4x - 4 - y + 2 + 2z + 6 = 0$$

$$4x - y + 2z + 4 = 0$$

So the plane equation is

$$4x - y + 2z = -4$$

This equation includes every point in the plane and excludes points not on it.

Finding a plane from three points

Sometimes a plane is given by three noncollinear points, such as $A$, $B$, and $C$. First, form two direction vectors in the plane, such as $\overrightarrow{AB}$ and $\overrightarrow{AC}$. Then compute a normal vector using the cross product:

$$\mathbf{n} = \overrightarrow{AB} \times \overrightarrow{AC}$$

Once you have $\mathbf{n}$, use point-normal form.

For example, if

$$A(1, 0, 2), \quad B(3, 1, 2), \quad C(2, 2, 5)$$

then

$$\overrightarrow{AB} = \langle 2, 1, 0 \rangle, \quad \overrightarrow{AC} = \langle 1, 2, 3 \rangle$$

A normal vector is

$$\overrightarrow{AB} \times \overrightarrow{AC} = \langle 3, -6, 3 \rangle$$

which can be simplified to

$$\langle 1, -2, 1 \rangle$$

Using point $A(1, 0, 2)$:

$$1(x - 1) - 2(y - 0) + 1(z - 2) = 0$$

So the plane is

$$x - 2y + z = 3$$

Recognizing Relationships Among Lines and Planes

The equations of lines and planes help us understand how objects in space relate to one another. This is useful in engineering, physics, and computer graphics 🎮

Parallel and perpendicular relationships

A line is parallel to a plane if its direction vector is perpendicular to the plane’s normal vector. In symbols, if a line has direction vector $\mathbf{v}$ and the plane has normal vector $\mathbf{n}$, then the line is parallel to the plane when

$$\mathbf{v} \cdot \mathbf{n} = 0$$

A line is perpendicular to a plane if its direction vector is parallel to the plane’s normal vector. That means

$$\mathbf{v} = k\mathbf{n}$$

for some scalar $k$.

Two planes are parallel if their normal vectors are scalar multiples of each other. Two planes are perpendicular if their normal vectors have dot product zero:

$$\mathbf{n}_1 \cdot \mathbf{n}_2 = 0$$

Example: checking whether a line meets a plane

Consider the line

$$x = 1 + 2t, \quad y = 3 - t, \quad z = 4 + t$$

and the plane

$$2x - y + z = 7$$

Substitute the line into the plane equation:

$$2(1 + 2t) - (3 - t) + (4 + t) = 7$$

Simplify:

$$2 + 4t - 3 + t + 4 + t = 7$$

$$3 + 6t = 7$$

$$6t = 4$$

$$t = \frac{2}{3}$$

So the line intersects the plane at exactly one point. This kind of substitution is a standard tool in multivariable calculus.

Why These Equations Matter in Multivariable Calculus

students, equations of lines and planes are not just geometric facts. They are building blocks for later ideas like motion in space, tangent lines, tangent planes, and surface analysis.

A moving particle in space can be described by a vector-valued function

$$\mathbf{r}(t) = \langle x(t), y(t), z(t) \rangle$$

If the particle moves in a straight line at constant speed, then its path looks like

$$\mathbf{r}(t) = \mathbf{r}_0 + t\mathbf{v}$$

This is the same form used for a line. So line equations are a simple case of vector-valued motion.

Planes also matter because they are the simplest flat surfaces in 3D space. Later, when you study tangent planes to surfaces, you will use the same point-normal idea. A tangent plane is the best flat approximation to a curved surface near a point, much like a road looks flat when you zoom in close enough 🚗

Real-world interpretation

  • A line can represent the path of a laser beam or a straight hallway.
  • A plane can represent a wall, floor, or screen.
  • A normal vector can represent a direction sticking straight out from a surface.

These models help scientists and engineers describe positions, directions, and collisions in space.

Common Mistakes to Avoid

One common mistake is mixing up a point with a vector. A point like $P(1, 2, 3)$ gives a location, while a vector like $\langle 1, 2, 3 \rangle$ gives a direction or displacement. They may use the same numbers, but they have different meanings.

Another mistake is forgetting that a plane needs a normal vector, not a direction vector. A direction vector lies in the plane, but a normal vector stands perpendicular to it.

A third mistake is trying to write a symmetric equation when a direction component is zero. In that case, the corresponding coordinate must be handled separately.

Conclusion

Equations of lines and planes let students describe simple geometric objects in space using vectors, points, and dot products. A line is determined by a point and a direction vector, while a plane is determined by a point and a normal vector. These equations are powerful because they connect geometry to algebra and prepare you for motion in space, vector-valued functions, and later calculus ideas. When you can write and interpret these equations, you have a strong foundation for the rest of multivariable calculus ✅

Study Notes

  • A line in space can be written as $\mathbf{r}(t) = \mathbf{r}_0 + t\mathbf{v}$.
  • Parametric equations for a line are $x = x_0 + at$, $y = y_0 + bt$, and $z = z_0 + ct$.
  • If $a$, $b$, and $c$ are all nonzero, a line can also be written in symmetric form as $\frac{x - x_0}{a} = \frac{y - y_0}{b} = \frac{z - z_0}{c}$.
  • A plane with normal vector $\mathbf{n} = \langle A, B, C \rangle$ through $P_0(x_0, y_0, z_0)$ has equation $A(x - x_0) + B(y - y_0) + C(z - z_0) = 0$.
  • A normal vector is perpendicular to every direction lying in the plane.
  • Two planes are parallel if their normal vectors are scalar multiples.
  • Two planes are perpendicular if their normal vectors have dot product zero.
  • A line is parallel to a plane when the line’s direction vector is perpendicular to the plane’s normal vector.
  • A line is perpendicular to a plane when its direction vector is parallel to the plane’s normal vector.
  • A plane through three noncollinear points can be found by using the cross product to create a normal vector.
  • Line and plane equations are essential tools for vector-valued functions, motion in space, and tangent plane ideas later in multivariable calculus.

Practice Quiz

5 questions to test your understanding

Equations Of Lines And Planes — Multivariable Calculus | A-Warded