1. Vectors and Geometry

Lines And Planes

Details parametric equations of lines and the general form of planes in three dimensions.

Lines and Planes in Three Dimensions

Welcome, students! In this lesson, we’ll dive into the fascinating world of lines and planes in three-dimensional space. By the end, you’ll be able to write equations for lines and planes, understand their geometric interpretations, and solve problems involving intersections and angles. Let’s unlock the secrets of 3D space together! 🌟

Parametric Equations of Lines

To begin, let’s talk about how we describe a line in three-dimensional space. Unlike in two dimensions, where a line can be defined by a single slope-intercept form ($y = mx + b$), in three dimensions, we need a more flexible way to describe a line’s direction and position.

Vectors and Points

Every line in 3D is defined by:

  1. A point through which the line passes, called the position vector $\mathbf{r}_0 = \langle x_0, y_0, z_0 \rangle$.
  2. A direction vector $\mathbf{v} = \langle a, b, c \rangle$, which gives the direction of the line.

The parametric equations of a line are derived from these two components. If $t$ is a parameter (a real number that can vary), the line can be expressed as:

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

In component form, this expands to:

$x = x_0 + at$

$y = y_0 + bt$

$z = z_0 + ct$

These are the parametric equations of the line. Each value of $t$ gives a different point on the line.

Example: A Simple Line

Let’s say we have a point $(1, 2, 3)$ and a direction vector $\langle 4, -2, 5 \rangle$. We can write the parametric equations as:

$x = 1 + 4t$

$y = 2 - 2t$

$z = 3 + 5t$

Now, if we plug in $t = 0$, we get $(1, 2, 3)$, our starting point. If we plug in $t = 1$, we get $(5, 0, 8)$, a point one unit along the direction vector. Notice how the direction vector moves us through space! 🚀

Symmetric Equations of a Line

We can also write the line in a different form called the symmetric form. If $a, b, c \neq 0$, we can solve each parametric equation for $t$:

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

This gives us the symmetric equations of the line. It’s a compact form that can be useful for certain types of problems.

Fun Fact: Lines in Space

Did you know that two random lines in three-dimensional space are most likely skew? That means they don’t intersect and they’re not parallel—they just pass by each other. Think of it like two different roads going in different directions at different heights. 🚗🛤️

The General Equation of a Plane

Now that we’ve tackled lines, let’s explore planes. A plane is a flat surface extending infinitely in all directions. In three dimensions, a plane can be defined by a single equation.

The Normal Vector

A key concept for understanding planes is the normal vector. The normal vector is a vector that’s perpendicular (orthogonal) to every line lying on the plane. We denote the normal vector as $\mathbf{n} = \langle A, B, C \rangle$.

The Plane Equation

If we know a point on the plane $(x_0, y_0, z_0)$ and the normal vector $\mathbf{n} = \langle A, B, C \rangle$, the equation of the plane is given by:

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

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

If we expand this equation, we get the general form of the plane equation:

Ax + By + Cz + D = 0

Where $D = -(Ax_0 + By_0 + Cz_0)$ is a constant determined by the point on the plane.

Example: A Plane Through a Point

Suppose we want to find the equation of a plane that passes through the point $(2, 1, -3)$ and has a normal vector $\langle 3, -1, 2 \rangle$. We use the point-normal form:

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

Expanding this, we get:

3x - 6 - y + 1 + 2z + 6 = 0

Simplifying, we have:

3x - y + 2z + 1 = 0

Voilà! That’s the equation of our plane. 🪂

Plane from Three Points

Another cool method: you can define a plane from three non-collinear points. Let’s say we have three points:

  • $P_1 = (1, 0, 0)$
  • $P_2 = (0, 1, 0)$
  • $P_3 = (0, 0, 1)$

First, we find two vectors that lie on the plane: $\mathbf{u} = P_2 - P_1$ and $\mathbf{v} = P_3 - P_1$.

$\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

We find the normal vector by taking the cross product of $\mathbf{u}$ and $\mathbf{v}$:

$\mathbf{n} = \mathbf{u} \times \mathbf{v} = $

$\begin{vmatrix}$

$\mathbf{i} & \mathbf{j} & \mathbf{k} \\$

-1 & 1 & 0 \\

-1 & 0 & 1

$\end{vmatrix}$

This gives:

$\mathbf{n}$ = \langle 1, 1, 1 \rangle

Now we use the point-normal form with $P_1 = (1, 0, 0)$:

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

Simplifying, we get:

x + y + z - 1 = 0

That’s the equation of the plane through those three points! 🌐

Intersections: Lines and Planes

Let’s explore what happens when lines and planes intersect. There are a few key cases:

Line Intersecting a Plane

To find the intersection of a line and a plane, we substitute the parametric equations of the line into the plane equation. This gives us an equation in terms of $t$.

Example: Suppose we have the line:

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

And the plane:

x - y + z - 4 = 0

We substitute $x, y, z$:

(1 + 2t) - (3 - t) + (2 + t) - 4 = 0

Simplifying:

1 + 2t - 3 + t + 2 + t - 4 = 0

$t = 4$

We found $t = 4$. Now, we plug $t = 4$ back into the line equations to find the intersection point:

x = 1 + 2(4) = 9

y = 3 - 4 = -1

z = 2 + 4 = 6

So, the line intersects the plane at $(9, -1, 6)$. 🎯

Parallel Lines and Planes

A line and a plane can also be parallel. This happens if the direction vector of the line is perpendicular to the normal vector of the plane. In that case, the line either lies entirely on the plane or never intersects it.

Two Planes Intersecting

What about two planes? Two planes either:

  1. Intersect along a line.
  2. Are parallel and distinct (no intersection).
  3. Are the same plane (infinitely overlapping).

To find the line of intersection, we solve the system of equations formed by the two planes. This can be done using methods like substitution or elimination.

Example: Suppose we have two planes:

2x - y + z = 3

x + y - 2z = -1

We solve this system. Let’s solve for $y$ from the second equation:

y = -1 + 2z - x

Substitute into the first equation:

2x - (-1 + 2z - x) + z = 3

Simplifying:

2x + 1 - 2z + x + z = 3

3x - z + 1 = 3

$3x - z = 2$

$z = 3x - 2$

Now we have $z$ in terms of $x$. We also have $y = -1 + 2(3x - 2) - x = 6x - 4 - x - 1 = 5x - 5$.

So, the line of intersection is:

x = t, \quad y = 5t - 5, \quad z = 3t - 2

This is the parametric form of the line where the two planes intersect. 🛤️

Angles Between Lines and Planes

Now let’s talk about angles. We often want to know the angle between two lines, two planes, or a line and a plane.

Angle Between Two Lines

The angle $\theta$ between two lines is found using the direction vectors $\mathbf{v}_1$ and $\mathbf{v}_2$. The formula is:

$\cos$ $\theta$ = $\frac{\mathbf{v}_1 \cdot \mathbf{v}_2}{\|\mathbf{v}_1\|\|\mathbf{v}_2\|}$

Where $\mathbf{v}_1 \cdot \mathbf{v}_2$ is the dot product, and $\|\mathbf{v}_1\|$ and $\|\mathbf{v}_2\|$ are the magnitudes of the vectors.

Angle Between Two Planes

The angle between two planes is the angle between their normal vectors. If $\mathbf{n}_1$ and $\mathbf{n}_2$ are the normal vectors of the planes, then:

$\cos$ $\theta$ = $\frac{\mathbf{n}_1 \cdot \mathbf{n}_2}{\|\mathbf{n}_1\|\|\mathbf{n}_2\|}$

Angle Between a Line and a Plane

The angle between a line and a plane is a bit trickier. We first find the angle between the line’s direction vector $\mathbf{v}$ and the plane’s normal vector $\mathbf{n}$. Let $\phi$ be this angle, given by:

$\cos \phi = \frac{\mathbf{v} \cdot \mathbf{n}}{\|\mathbf{v}\|\|\mathbf{n}\|}$

Then, the angle $\theta$ between the line and the plane is:

$\theta = 90^\circ - \phi$

This gives us the acute angle between the line and the plane. 🧭

Conclusion

In this lesson, we explored how to describe lines and planes in three-dimensional space. We learned how to write parametric equations for lines and general equations for planes. We also saw how to find intersections between lines and planes and how to calculate angles between them. With these tools, you’re ready to tackle a wide range of 3D geometry problems! Keep practicing, students, and you’ll master these concepts in no time. 🚀

Study Notes

  • Parametric equations of a line:
  • $x = x_0 + at$
  • $y = y_0 + bt$
  • $z = z_0 + ct$
  • Direction vector: $\mathbf{v} = \langle a, b, c \rangle$
  • Point on the line: $\mathbf{r}_0 = \langle x_0, y_0, z_0 \rangle$
  • Symmetric equations of a line:
  • $\frac{x - x_0}{a} = \frac{y - y_0}{b} = \frac{z - z_0}{c}$
  • General equation of a plane:
  • $Ax + By + Cz + D = 0$
  • Normal vector: $\mathbf{n} = \langle A, B, C \rangle$
  • Point-normal form of a plane:
  • $A(x - x_0) + B(y - y_0) + C(z - z_0) = 0$
  • Intersection of a line and a plane:
  • Substitute the parametric equations of the line into the plane equation and solve for $t$.
  • Intersection of two planes:
  • Solve the system of equations to find the line of intersection.
  • Angle between two lines:
  • $\cos \theta = \frac{\mathbf{v}_1 \cdot \mathbf{v}_2}{\|\mathbf{v}_1\|\|\mathbf{v}_2\|}$
  • Angle between two planes:
  • $\cos \theta = \frac{\mathbf{n}_1 \cdot \mathbf{n}_2}{\|\mathbf{n}_1\|\|\mathbf{n}_2\|}$
  • Angle between a line and a plane:
  • $\cos \phi = \frac{\mathbf{v} \cdot \mathbf{n}}{\|\mathbf{v}\|\|\mathbf{n}\|}$
  • $\theta = 90^\circ - \phi$

Keep these notes handy, students, and you’ll be ready for any challenge that 3D geometry throws your way! 🌟

Practice Quiz

5 questions to test your understanding

Lines And Planes — Calculus 3 | A-Warded