Planes in 3D Formula

The Formula

Point-normal form: a(x - x_0) + b(y - y_0) + c(z - z_0) = 0
General form: ax + by + cz = d
Distance from point (x_1, y_1, z_1) to plane: D = \frac{|ax_1 + by_1 + cz_1 - d|}{\sqrt{a^2 + b^2 + c^2}}

When to use: Think of a plane as a perfectly flat, infinite floor that can be tilted at any angle in space. A horizontal floor is one plane; tilt it and you get another. To describe which tilt you have, imagine sticking a pole straight up out of the floor—that pole is the normal vector, and it captures the exact orientation of the surface. Any flat sheet in 3D, no matter how it's angled, is completely determined by where it sits and which direction its pole points.

Quick Example

Plane through (1, 2, 3) with normal \langle 2, -1, 5 \rangle:
2(x - 1) - 1(y - 2) + 5(z - 3) = 0
2x - y + 5z = 15

Notation

\mathbf{n} = \langle a, b, c \rangle is the normal vector. The equation can also be written as \mathbf{n} \cdot (\mathbf{r} - \mathbf{r}_0) = 0 in vector form.

What This Formula Means

A flat, infinite surface in three-dimensional space described by the equation ax + by + cz = d, where the vector \langle a, b, c \rangle is normal (perpendicular) to the plane.

Think of a plane as a perfectly flat, infinite floor that can be tilted at any angle in space. A horizontal floor is one plane; tilt it and you get another. To describe which tilt you have, imagine sticking a pole straight up out of the floor—that pole is the normal vector, and it captures the exact orientation of the surface. Any flat sheet in 3D, no matter how it's angled, is completely determined by where it sits and which direction its pole points.

Formal View

\Pi = \{\mathbf{r} \in \mathbb{R}^3 \mid \mathbf{n} \cdot (\mathbf{r} - \mathbf{r}_0) = 0\}, i.e., ax + by + cz = d where \mathbf{n} = \langle a,b,c \rangle and d = \mathbf{n} \cdot \mathbf{r}_0

Worked Examples

Example 1

easy
Write the equation of the plane with normal vector \langle 2, -3, 1 \rangle passing through the point (1, 4, -2).

Solution

  1. 1
    The equation of a plane with normal \langle A, B, C \rangle through (x_0, y_0, z_0) is A(x-x_0) + B(y-y_0) + C(z-z_0) = 0.
  2. 2
    Substitute: 2(x-1) - 3(y-4) + 1(z+2) = 0.
  3. 3
    Expand: 2x - 2 - 3y + 12 + z + 2 = 0, so 2x - 3y + z + 12 = 0.

Answer

2x - 3y + z + 12 = 0
A plane in 3D is determined by a point on the plane and a normal vector perpendicular to it. The normal vector's components become the coefficients of x, y, and z in the plane's equation. This generalizes the concept of a line (in 2D) having a perpendicular direction.

Example 2

medium
Find the equation of the plane through the points A(1, 0, 0), B(0, 2, 0), and C(0, 0, 3).

Common Mistakes

  • Confusing the normal vector with a direction vector IN the plane: \langle a, b, c \rangle is PERPENDICULAR to the plane, not parallel to it. Vectors lying in the plane are perpendicular to the normal.
  • Forgetting that three points determine a plane (if not collinear): find two vectors from these points, take their cross product to get the normal, then use the point-normal form.
  • Assuming two planes intersect at a point: in 3D, non-parallel planes intersect along an entire line, and three planes can intersect at a point, along a line, or not at all.

Why This Formula Matters

Planes are the 3D analogue of lines in 2D. They define boundaries, surfaces, and cross-sections in physics and engineering. The concept of a normal vector generalizes to tangent planes of surfaces, which are central to multivariable calculus and differential geometry.

Frequently Asked Questions

What is the Planes in 3D formula?

A flat, infinite surface in three-dimensional space described by the equation ax + by + cz = d, where the vector \langle a, b, c \rangle is normal (perpendicular) to the plane.

How do you use the Planes in 3D formula?

Think of a plane as a perfectly flat, infinite floor that can be tilted at any angle in space. A horizontal floor is one plane; tilt it and you get another. To describe which tilt you have, imagine sticking a pole straight up out of the floor—that pole is the normal vector, and it captures the exact orientation of the surface. Any flat sheet in 3D, no matter how it's angled, is completely determined by where it sits and which direction its pole points.

What do the symbols mean in the Planes in 3D formula?

\mathbf{n} = \langle a, b, c \rangle is the normal vector. The equation can also be written as \mathbf{n} \cdot (\mathbf{r} - \mathbf{r}_0) = 0 in vector form.

Why is the Planes in 3D formula important in Math?

Planes are the 3D analogue of lines in 2D. They define boundaries, surfaces, and cross-sections in physics and engineering. The concept of a normal vector generalizes to tangent planes of surfaces, which are central to multivariable calculus and differential geometry.

What do students get wrong about Planes in 3D?

Two planes intersect in a LINE (not a point), unless they are parallel. To find the intersection line, solve the two plane equations simultaneously—you'll get parametric equations for a line.

What should I learn before the Planes in 3D formula?

Before studying the Planes in 3D formula, you should understand: lines in 3d.