What Is the Equation of a Plane?
The equation of a plane is an algebraic rule that every point $(x, y, z)$ lying on a flat, infinite surface in 3D must satisfy, written in general form as:
$$ax + by + cz + d = 0$$
The numbers $a$, $b$, and $c$ are not arbitrary - together they form the normal vector $\vec{n} = (a, b, c)$, a vector pointing perpendicular to the plane. The constant $d$ fixes how far the plane sits from the origin. This is the 3D partner of the 2D line equation $ax + by + c = 0$, extended with one more axis, and it lives inside the wider cartesian coordinate system that also frames every 3d shapes problem.
Two facts define a plane completely: one point on it and one direction perpendicular to it. Fix those two, and every other point is decided.
What Are the Forms of the Equation of a Plane?
A plane can be written several ways depending on what you are given. Each form is the same surface dressed differently.
Form | Equation | When to use it |
|---|---|---|
General (Cartesian) | $ax + by + cz + d = 0$ | Standard reference form |
Point-normal | $a(x - x_0) + b(y - y_0) + c(z - z_0) = 0$ | Given a point and a normal |
Vector (normal) | $\vec{n} \cdot (\vec{r} - \vec{r_0}) = 0$ | Given position vectors |
Intercept | $\dfrac{x}{p} + \dfrac{y}{q} + \dfrac{z}{s} = 1$ | Given axis intercepts |
Here is what each symbol means:
$a, b, c$ - the components of the normal vector $\vec{n}$, perpendicular to the plane.
$d$ - the constant term; $\lvert d \rvert / \lvert \vec{n} \rvert$ is the perpendicular distance from the origin.
$(x_0, y_0, z_0)$ - a known point lying on the plane.
$\vec{r} = (x, y, z)$ and $\vec{r_0} = (x_0, y_0, z_0)$ - position vectors of a general and a fixed point.
$p, q, s$ - the x-, y-, and z-intercepts, where the plane crosses each axis.
The intercept form comes straight from the general form. If a plane crosses the x-axis at $(p, 0, 0)$, the y-axis at $(0, q, 0)$, and the z-axis at $(0, 0, s)$, dividing $ax + by + cz = -d$ through by $-d$ rewrites it as $\tfrac{x}{p} + \tfrac{y}{q} + \tfrac{z}{s} = 1$. The related cartesian form writes the same surface in coordinate terms.
How Do You Find the Equation of a Plane from a Point and a Normal Vector?
This is the core derivation, and every other form leans on it. Take a fixed point $P_0(x_0, y_0, z_0)$ on the plane and a normal vector $\vec{n} = (a, b, c)$. For any other point $P(x, y, z)$ on the plane, the vector $\overrightarrow{P_0P} = (x - x_0,\ y - y_0,\ z - z_0)$ lies flat in the plane.
Because $\vec{n}$ is perpendicular to the plane, it is perpendicular to that in-plane vector, so their dot product is zero:
$$\vec{n} \cdot \overrightarrow{P_0P} = 0$$
$$a(x - x_0) + b(y - y_0) + c(z - z_0) = 0$$
Expanding and collecting the constants into a single $d = -(ax_0 + by_0 + cz_0)$ gives the general form $ax + by + cz + d = 0$. That is the entire idea: the plane is the set of points whose displacement from $P_0$ is perpendicular to $\vec{n}$. Understanding vectors as directions with length is the one prerequisite here.
How Do You Find the Equation of a Plane Through Three Points?
When you are given three non-collinear points instead of a normal, you build the normal yourself. Say the points are $A$, $B$, and $C$.
Form two vectors that lie in the plane: $\overrightarrow{AB}$ and $\overrightarrow{AC}$.
Take their cross product, $\vec{n} = \overrightarrow{AB} \times \overrightarrow{AC}$ - the result is perpendicular to both, so it is the plane's normal.
Use $\vec{n}$ and any one of the three points in the point-normal form to write the equation.
Three points fix a plane exactly, as long as they do not all lie on one line - the same reason a three-legged stool never wobbles. Paul's Online Notes at Lamar University gives a full run-through of this method (see the Lamar equations-of-planes notes).
What Are the Properties of a Plane?
A plane in 3D behaves in fixed, predictable ways, and these properties are worth stating on their own:
A plane is infinite and flat. It has no edges and no thickness, extending forever in two dimensions.
The normal decides orientation. Two planes are parallel when their normals are parallel, and perpendicular when their normals are perpendicular.
Three non-collinear points define exactly one plane. Any fewer, or three collinear points, do not pin it down.
The equation is not unique. Multiplying $ax + by + cz + d = 0$ through by any nonzero constant gives the same plane, so $2x + 4y + 6z + 8 = 0$ and $x + 2y + 3z + 4 = 0$ are identical.
Distance is measurable. The distance between point and plane and the distance between two planes both follow directly from the coefficients $a, b, c, d$.
Where Is the Equation of a Plane Used?
"Every flat surface a computer draws is a plane equation solved millions of times a second." The concept is not abstract bookkeeping - it is how 3D space gets described and rendered.
Computer graphics and gaming - every polygon on a 3D model is a bounded piece of a plane; lighting and collision detection test points against plane equations (see the Wikipedia plane article).
Engineering and architecture - walls, floors, ramps, and machined surfaces are specified as planes with a required orientation and distance.
Physics - a plane of symmetry, a wavefront, or a surface of constant potential is described this way.
Aviation and robotics - a landing approach or a robot arm's working surface is defined by a plane the system must stay on or avoid.
Examples of the Equation of a Plane
Example 1
Find the equation of the plane through $(2, -1, 3)$ with normal vector $\vec{n} = (4, 5, 6)$.
Use the point-normal form:
$$4(x - 2) + 5(y + 1) + 6(z - 3) = 0$$
$$4x - 8 + 5y + 5 + 6z - 18 = 0$$
$$4x + 5y + 6z - 21 = 0$$
Final answer: $4x + 5y + 6z - 21 = 0$.
Example 2
A student is asked for the normal vector of the plane $3x - 2y + z = 7$ and answers $(3, -2, 7)$.
Wrong path. The student reads all four numbers off the equation and reports $\vec{n} = (3, -2, 7)$.
Why it breaks. The normal vector is only the coefficients of $x$, $y$, and $z$. The number 7 is the constant $d$ (after moving it across), which fixes the plane's position, not its direction. Including it mixes an orientation with a distance.
The rescue. Read the normal as the coefficients of the variables only: $\vec{n} = (3, -2, 1)$. The $z$-coefficient is 1, not 7.
Final answer: $\vec{n} = (3, -2, 1)$.
Example 3
Write the plane $2x + 3y + 6z = 12$ in intercept form.
Divide every term by 12:
$$\frac{2x}{12} + \frac{3y}{12} + \frac{6z}{12} = 1 \quad\Rightarrow\quad \frac{x}{6} + \frac{y}{4} + \frac{z}{2} = 1$$
Final answer: intercepts at $x = 6$, $y = 4$, $z = 2$.
Example 4
Find the plane through the three points $A(1, 0, 0)$, $B(0, 1, 0)$, and $C(0, 0, 1)$.
Vectors in the plane: $\overrightarrow{AB} = (-1, 1, 0)$ and $\overrightarrow{AC} = (-1, 0, 1)$.
Normal by cross product: $\vec{n} = \overrightarrow{AB} \times \overrightarrow{AC} = (1, 1, 1)$.
Point-normal with $A(1, 0, 0)$: $1(x - 1) + 1(y) + 1(z) = 0$.
$$x + y + z = 1$$
Final answer: $x + y + z = 1$.
Example 5
Are the planes $x + 2y - 2z = 5$ and $2x + 4y - 4z = 1$ parallel?
Compare normals: $\vec{n_1} = (1, 2, -2)$ and $\vec{n_2} = (2, 4, -4) = 2\vec{n_1}$. The normals are scalar multiples, so the planes are parallel. Since the equations are not multiples of each other overall (the constants differ), they are parallel but distinct - they never meet.
Final answer: yes, parallel and non-intersecting.
Example 6
Find the distance from the origin to the plane $2x + 3y + 6z = 14$.
Rewrite as $2x + 3y + 6z - 14 = 0$, so $d = -14$ and $\vec{n} = (2, 3, 6)$ with $\lvert \vec{n} \rvert = \sqrt{4 + 9 + 36} = 7$.
$$\text{distance} = \frac{\lvert d \rvert}{\lvert \vec{n} \rvert} = \frac{14}{7} = 2$$
Final answer: 2 units.
Where Do Students Trip Up on the Equation of a Plane?
The habit that trips students up most is treating the plane equation like a 2D line and forgetting that $a$, $b$, and $c$ carry a geometric meaning - they are the normal direction, not just coefficients to solve for. Reading the normal straight off the equation, and keeping signs consistent, fixes the majority of errors.
Mistake 1: Reading the constant as part of the normal
Where it slips in: Pulling the normal vector from an equation like $3x - 2y + z = 7$.
Don't do this: Writing $\vec{n} = (3, -2, 7)$ by grabbing the constant too.
The correct way: The normal is only the coefficients of $x$, $y$, $z$: $\vec{n} = (3, -2, 1)$. The constant sets position, not direction.
Mistake 2: Sign errors when expanding the point-normal form
Where it slips in: Substituting a negative coordinate into $a(x - x_0)$.
Don't do this: Writing $5(y - (-1))$ as $5(y - 1)$ and losing the sign.
The correct way: Subtracting a negative is adding: $5(y - (-1)) = 5(y + 1)$. Substitute carefully, then simplify.
Mistake 3: Using two collinear direction vectors for three points
Where it slips in: Building the normal from three points that happen to lie on a line.
Don't do this: Taking a cross product of two parallel vectors, which gives the zero vector - no valid normal.
The correct way: Check that the three points are non-collinear first; if $\overrightarrow{AB} \times \overrightarrow{AC} = \vec{0}$, the points do not define a unique plane.
Conclusion
The equation of a plane is $ax + by + cz + d = 0$, where $(a, b, c)$ is the normal vector and $d$ fixes distance from the origin.
The general, point-normal, vector, and intercept forms all describe the same surface, and each derives from a point plus a normal.
Three non-collinear points define a plane; you find its normal with a cross product, then use the point-normal form.
The normal is the coefficients of the variables only - never the constant - and parallel planes have parallel normals.
To take the equation of a plane further with a teacher, explore Bhanzu's geometry tutor or high school math tutor sessions, or browse math classes online for guided 3D-geometry practice.
Read More
Practice These to Solidify Your Understanding
Work through these problems in order:
Find the equation of the plane through $(1, 2, -1)$ with normal $\vec{n} = (3, 0, 4)$.
Write the plane $4x + y + 2z = 8$ in intercept form.
Find the plane through $A(2, 0, 0)$, $B(0, 3, 0)$, and $C(0, 0, 6)$.
Answer to Question 1: $3(x - 1) + 0(y - 2) + 4(z + 1) = 0 \Rightarrow 3x + 4z + 1 = 0$. Answer to Question 2: $\tfrac{x}{2} + \tfrac{y}{8} + \tfrac{z}{4} = 1$, so intercepts $x = 2$, $y = 8$, $z = 4$. Answer to Question 3: intercept form $\tfrac{x}{2} + \tfrac{y}{3} + \tfrac{z}{6} = 1$, or $3x + 2y + z = 6$.
Want a live Bhanzu trainer to work through more plane problems with you? Book a free demo class.
Was this article helpful?
Your feedback helps us write better content
