Planes in 3D Formula

Planes in 3d is a flat, infinite surface in 3D space described by ax + by + cz = d, where a, b, c is the normal vector.

The Formula

Point-normal form: a(xβˆ’x0)+b(yβˆ’y0)+c(zβˆ’z0)=0a(x - x_0) + b(y - y_0) + c(z - z_0) = 0
General form: ax+by+cz=dax + by + cz = d
Distance from point (x1,y1,z1)(x_1, y_1, z_1) to plane: D=∣ax1+by1+cz1βˆ’d∣a2+b2+c2D = \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)(1, 2, 3) with normal ⟨2,βˆ’1,5⟩\langle 2, -1, 5 \rangle:
2(xβˆ’1)βˆ’1(yβˆ’2)+5(zβˆ’3)=02(x - 1) - 1(y - 2) + 5(z - 3) = 0
2xβˆ’y+5z=152x - y + 5z = 15

Notation

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

What This Formula Means

A flat, infinite surface in 3D space described by ax+by+cz=dax + by + cz = d, where ⟨a,b,c⟩\langle a, b, c \rangle is the normal vector.

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

Ξ ={r∈R3∣nβ‹…(rβˆ’r0)=0}\Pi = \{\mathbf{r} \in \mathbb{R}^3 \mid \mathbf{n} \cdot (\mathbf{r} - \mathbf{r}_0) = 0\}, i.e., ax+by+cz=dax + by + cz = d where n=⟨a,b,c⟩\mathbf{n} = \langle a,b,c \rangle and d=nβ‹…r0d = \mathbf{n} \cdot \mathbf{r}_0

Worked Examples

Example 1

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

Answer

2xβˆ’3y+z+12=02x - 3y + z + 12 = 0

First step

1
The equation of a plane with normal ⟨A,B,C⟩\langle A, B, C \rangle through (x0,y0,z0)(x_0, y_0, z_0) is A(xβˆ’x0)+B(yβˆ’y0)+C(zβˆ’z0)=0A(x-x_0) + B(y-y_0) + C(z-z_0) = 0.

Full solution

  1. 2
    Substitute: 2(xβˆ’1)βˆ’3(yβˆ’4)+1(z+2)=02(x-1) - 3(y-4) + 1(z+2) = 0.
  2. 3
    Expand: 2xβˆ’2βˆ’3y+12+z+2=02x - 2 - 3y + 12 + z + 2 = 0, so 2xβˆ’3y+z+12=02x - 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 xx, yy, and zz 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)A(1, 0, 0), B(0,2,0)B(0, 2, 0), and C(0,0,3)C(0, 0, 3).

Example 3

medium
Find the equation of the plane through (1,βˆ’1,2)(1, -1, 2) parallel to the plane 3x+yβˆ’2z=93x + y - 2z = 9.

Common Mistakes

  • Using a direction vector instead of the normal vector - a plane is built from the vector PERPENDICULAR to it, not one lying in it.
  • Reading the coefficients wrong - in ax+by+cz=dax+by+cz=d the normal is ⟨a,b,c⟩\langle a,b,c\rangle (the coefficients), and dd alone does not affect orientation, only position.
  • Forgetting the absolute value or the a2+b2+c2\sqrt{a^2+b^2+c^2} in the distance formula - distance is always nonnegative and divided by the normal's length.

Why This Formula Matters

The normal vector turns geometric questions (is this point on the surface? how far away? where do two surfaces meet?) into clean dot-product algebra, which is essential for 3D graphics, computer collision detection, and multivariable calculus. Recognizing it by "Is the object a flat surface fixed by a perpendicular (normal) vector and one equation ax+by+cz=dax+by+cz=d?" β€” rather than by familiar numbers β€” is what lets a student tell it apart from lines in 3d and normal vector and line in 2d in a mixed problem set.

Frequently Asked Questions

What is the Planes in 3D formula?

A flat, infinite surface in 3D space described by ax+by+cz=dax + by + cz = d, where ⟨a,b,c⟩\langle a, b, c \rangle is the normal vector.

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?

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

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

The normal vector turns geometric questions (is this point on the surface? how far away? where do two surfaces meet?) into clean dot-product algebra, which is essential for 3D graphics, computer collision detection, and multivariable calculus. Recognizing it by "Is the object a flat surface fixed by a perpendicular (normal) vector and one equation ax+by+cz=dax+by+cz=d?" β€” rather than by familiar numbers β€” is what lets a student tell it apart from lines in 3d and normal vector and line in 2d in a mixed problem set.

What do students get wrong about Planes in 3D?

The procedure for planes in 3d is the easy part; the trap is using a direction vector instead of the normal vector. Asking "Is the object a flat surface fixed by a perpendicular (normal) vector and one equation ax+by+cz=dax+by+cz=d?" first is what keeps a correct-looking calculation from being attached to the wrong concept.

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

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