Plane Equation – General and Normal Forms

Learn the equation of a plane in three dimensions, including normal form and point-normal form.
🔑

Definition of a Plane

A plane in 3D geometry is a flat, two-dimensional surface that extends infinitely in all directions. It can be uniquely defined by a point it passes through and a normal vector (a vector perpendicular to the plane), which determines its orientation in space. The general equation of a plane is a linear equation in three variables.

SymbolDescription
A, B, CCoefficients of the normal vector; determine the orientation of the plane.
DConstant term that influences the plane's distance from the origin.
\vec{n}The normal vector, which is perpendicular to the surface of the plane.
(x₀, y₀, z₀) or \vec{r_0}Coordinates or position vector of a known point on the plane.
(x, y, z) or \vec{r}Coordinates or position vector of any general point on the plane.
a, b, cThe x, y, and z-intercepts where the plane crosses the coordinate axes.
dThe perpendicular distance from a point to the plane or between two parallel planes.
\thetaThe angle between two intersecting planes, measured as the angle between their normal vectors.
📐

Key Formulas for a Plane

\[ Ax + By + Cz + D = 0 \]
General Form
\[ A(x - x_0) + B(y - y_0) + C(z - z_0) = 0 \]
Point-Normal Form
\[ \vec{n} \cdot (\vec{r} - \vec{r_0}) = 0 \]
Vector Form
\[ \frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1 \]
Intercept Form
\[ d = \frac{|Ax_0 + By_0 + Cz_0 + D|}{\sqrt{A^2 + B^2 + C^2}} \]
Distance from a Point (x₀, y₀, z₀) to a Plane
\[ d = \frac{|D_1 - D_2|}{\sqrt{A^2 + B^2 + C^2}} \]
Distance Between Two Parallel Planes
\[ \cos\theta = \frac{|A_1A_2 + B_1B_2 + C_1C_2|}{\sqrt{A_1^2 + B_1^2 + C_1^2}\sqrt{A_2^2 + B_2^2 + C_2^2}} \]
Angle Between Two Planes
🖼️

Plane Diagram

x y z n(A,B,C) P₀ A(x−x₀)+B(y−y₀)+C(z−z₀)=0
Plane in 3D through point P₀(x₀,y₀,z₀) with normal vector n(A,B,C). Equation: A(x−x₀)+B(y−y₀)+C(z−z₀)=0.

A diagram of a plane shows a flat, parallelogram-shaped surface in a 3D coordinate system (x, y, z). A point P₀(x₀, y₀, z₀) is marked on the plane. A vector, labeled \(\vec{n} = (A, B, C)\), originates from P₀ and is drawn perpendicular to the plane's surface, representing the normal vector. Another arbitrary point P(x, y, z) is also shown on the plane, and the vector from P₀ to P lies entirely within the plane.

⚙️

Properties of a Plane

Linear Equation: A plane is always represented by a first-degree (linear) equation in x, y, and z, such as the general form `Ax + By + Cz + D = 0`.

Infinite Extent: A plane is a two-dimensional surface that extends infinitely in all directions within that surface. It has no thickness.

Unique Definition: A plane can be uniquely determined by three non-collinear points, or by one point and a normal vector.

Intersection: The intersection of two distinct, non-parallel planes is always a straight line. The intersection of a line and a non-parallel plane is a single point.

\[ \text{Parallel Condition: } \frac{A_1}{A_2} = \frac{B_1}{B_2} = \frac{C_1}{C_2} \]
Two planes are parallel if their normal vectors are scalar multiples.
\[ \text{Perpendicular Condition: } A_1A_2 + B_1B_2 + C_1C_2 = 0 \]
Two planes are perpendicular if the dot product of their normal vectors is zero.
🔬

Derivation of the Plane Equation

The equation of a plane can be derived using a known point on the plane and a vector normal (perpendicular) to the plane. Let \(P_0(x_0, y_0, z_0)\) be a known point on the plane, and let \(\vec{n} = \langle A, B, C \rangle\) be the normal vector. Let \(P(x, y, z)\) be any other point on the plane.

The vector from \(P_0\) to \(P\), denoted \(\vec{P_0P}\), must lie within the plane.

\[ \vec{P_0P} = \langle x - x_0, y - y_0, z - z_0 \rangle \]

Since the normal vector \(\vec{n}\) is perpendicular to every vector in the plane, it must be perpendicular to \(\vec{P_0P}\). The dot product of two perpendicular vectors is zero.

\[ \vec{n} \cdot \vec{P_0P} = 0 \]

Substituting the components of the vectors gives the point-normal form of the equation:

\[ \langle A, B, C \rangle \cdot \langle x - x_0, y - y_0, z - z_0 \rangle = 0 \]
\[ A(x - x_0) + B(y - y_0) + C(z - z_0) = 0 \]

Expanding this equation and collecting the constant terms yields the general form:

\[ Ax + By + Cz + (-Ax_0 - By_0 - Cz_0) = 0 \]

Letting \(D = -Ax_0 - By_0 - Cz_0\), we arrive at the general form \(Ax + By + Cz + D = 0\).

✍️

Worked Example

Find the general equation of the plane passing through the point P(2, -1, 3) with a normal vector \(\vec{n} = \langle 4, 1, -5 \rangle\).
  1. Start with the point-normal form of the plane equation: `A(x - x₀) + B(y - y₀) + C(z - z₀) = 0`.
  2. Identify the components of the normal vector: A = 4, B = 1, C = -5.
  3. Identify the coordinates of the point: x₀ = 2, y₀ = -1, z₀ = 3.
  4. Substitute these values into the equation: `4(x - 2) + 1(y - (-1)) - 5(z - 3) = 0`.
  5. Simplify the equation: `4(x - 2) + (y + 1) - 5(z - 3) = 0`.
  6. Distribute the coefficients: `4x - 8 + y + 1 - 5z + 15 = 0`.
  7. Combine the constant terms: `4x + y - 5z + (-8 + 1 + 15) = 0`.
  8. Arrive at the final general form: `4x + y - 5z + 8 = 0`.
The general equation of the plane is \(4x + y - 5z + 8 = 0\).
🧮

Try It

🚀

Applications of Planes

Computer Graphics & Gaming: Planes are fundamental in 3D rendering. They are used to define surfaces, calculate reflections, create clipping planes to limit the viewable scene, and perform collision detection between objects and terrain.

Architecture & Engineering: Architects and structural engineers model floors, walls, and roofs as finite planes. This allows for precise calculation of surface area, structural loads, and ensures that building components align correctly in three-dimensional space.

Aviation & Aerospace: Flight paths and altitudes are often defined relative to planes. Air traffic control systems use plane equations to define flight levels and ensure safe separation between aircraft in 3D airspace.

Physics & Crystallography: In physics, planes are used to model wavefronts of light or sound. In crystallography, the faces of crystals and the arrangement of atoms are described by Miller indices, which define families of parallel planes within the crystal lattice.

🌍

Real-World Examples

An architect is designing a sloped glass roof supported by three points: A(0, 10, 8), B(12, 10, 5), and C(0, 0, 12). Find the equation of the plane representing the roof.
  1. Find two vectors in the plane: \(\vec{AB} = B - A = \langle 12, 0, -3 \rangle\) and \(\vec{AC} = C - A = \langle 0, -10, 4 \rangle\).
  2. Calculate the normal vector \(\vec{n}\) by taking the cross product: \(\vec{n} = \vec{AB} \times \vec{AC}\).
  3. \(\vec{n} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 12 & 0 & -3 \\ 0 & -10 & 4 \end{vmatrix} = \mathbf{i}(0 - 30) - \mathbf{j}(48 - 0) + \mathbf{k}(-120 - 0) = \langle -30, -48, -120 \rangle\).
  4. Use point A(0, 10, 8) and the normal vector in the point-normal form: `-30(x - 0) - 48(y - 10) - 120(z - 8) = 0`.
  5. Simplify: `-30x - 48y + 480 - 120z + 960 = 0`.
  6. Combine terms: `-30x - 48y - 120z + 1440 = 0`.
  7. Divide by -6 for a simpler form: `5x + 8y + 20z - 240 = 0`.
The equation of the roof plane is \(5x + 8y + 20z - 240 = 0\).
In a 3D computer model, a laser beam originates at a point P(10, 5, 20). The target is a flat shield represented by the plane \(3x - y + 2z - 6 = 0\). What is the shortest distance from the laser's origin to the shield?
  1. Use the distance formula from a point to a plane: `d = |Ax₀ + By₀ + Cz₀ + D| / sqrt(A² + B² + C²)`.
  2. Identify the parameters from the plane equation: A=3, B=-1, C=2, D=-6.
  3. Identify the coordinates of the point: x₀=10, y₀=5, z₀=20.
  4. Substitute the values into the numerator: `|3(10) + (-1)(5) + 2(20) - 6| = |30 - 5 + 40 - 6| = |59|`.
  5. Substitute the values into the denominator: `sqrt(3² + (-1)² + 2²) = sqrt(9 + 1 + 4) = sqrt(14)`.
  6. Calculate the distance: `d = 59 / sqrt(14)`.
The shortest distance from the laser to the shield is \(\frac{59}{\sqrt{14}} \approx 15.77\) units.
🏙️

Real-World Scenarios

n aircraft attitude plane
Aircraft Attitude (Pitch/Roll)
An aircraft's orientation is described by a plane through its center with a normal vector n perpendicular to the wing surface. Avionics compute the plane equation A(x−x₀)+B(y−y₀)+C(z−z₀)=0 to display pitch, roll, and bank angle on the artificial horizon.
n CNC milling surface
CNC Milling Surface
A milling machine's cutting surface is a plane defined by a point and normal vector. CNC programs specify the plane equation to orient the cutter at the correct angle for surface finishing, chamfering, and inclined-face machining.
geological fault plane
Geological Fault Plane
Seismologists model earthquake fault surfaces as planes using A(x−x₀)+B(y−y₀)+C(z−z₀)=0. The normal vector direction gives the fault orientation (strike and dip), and the plane equation determines the volume of rock displaced during a seismic event.

Architectural Surfaces

The flat surfaces we encounter in buildings—such as floors, walls, ceilings, and window panes—are all physical representations of planes. Their alignment and intersection define the geometry and structure of a building.

Geological Faults

In geology, a fault is a fracture in a rock formation where there has been significant displacement. Geologists often model large, relatively flat fault surfaces as planes to analyze seismic activity and understand the movement of tectonic plates.

Surface of a calm body of water

The surface of a still lake or a calm ocean on a windless day provides a natural, large-scale example of a horizontal plane. This plane is used as a reference for measuring elevation (sea level).

🗂️

Types and Classifications of Planes

Planes are often classified based on their orientation with respect to the standard coordinate axes (x, y, z).

Type of PlaneEquation FormDescription
Coordinate Planex=0, y=0, or z=0The fundamental planes that define the 3D coordinate system (the yz-plane, xz-plane, and xy-plane, respectively).
Plane Parallel to a Coordinate Planex=k, y=k, or z=kA plane that is parallel to one of the coordinate planes and located at a constant distance `k` from it.
Plane Parallel to an AxisAx + By + D = 0A plane that is parallel to the z-axis (its normal vector is perpendicular to the z-axis, so C=0). Similar forms exist for planes parallel to the x-axis (A=0) or y-axis (B=0).
Plane Through the OriginAx + By + Cz = 0A plane that passes through the point (0, 0, 0), which means its constant term D is zero.
⚠️

Common Mistakes

⚠️ Confusing the Normal Vector with a Direction Vector: A common error is to use a vector lying *in* the plane instead of the normal vector when writing the equation. Remember, the coefficients (A, B, C) in `Ax + By + Cz + D = 0` must come from a vector *perpendicular* to the plane.
⚠️ Sign Errors in the Point-Normal Form: The formula is `A(x - x₀)`. Students often forget the minus sign and write `A(x + x₀)`, especially when the coordinates `x₀, y₀, z₀` are negative. Always substitute carefully: `(x - (-2))` becomes `(x + 2)`.
💡 Forgetting the Absolute Value in Distance Formulas: The distance from a point to a plane or between two planes must always be a non-negative value. The formulas include an absolute value in the numerator `|...|` to ensure the result is positive.
🚀

Study Strategy

1 🧠 Build Your Foundation
  • Review the 'Definition of a Plane' and understand why a point and a normal vector are sufficient to define it.
  • Study the 'Plane Diagram' to visualize the normal vector's perpendicular relationship to every vector lying on the plane.
  • Follow the 'Derivation of the Plane Equation' to grasp why the dot product of the normal vector and a vector on the plane is zero.
  • Examine the 'Properties of a Plane' to understand its infinite extent and flatness in three-dimensional space.
2 🔑 Commit Formulas to Memory
  • Memorize the standard Cartesian form: ax + by + cz + d = 0, and identify (a, b, c) as the normal vector.
  • Learn the vector equation **r** ⋅ **n** = p, understanding what each variable represents.
  • Practice converting between different forms, such as the point-normal form a(x-x₀) + b(y-y₀) + c(z-z₀) = 0.
  • Master 'Related Formulas,' including the equations for the distance from a point to a plane and the angle between two planes.
3 ✍️ Reinforce with Practice
  • Replicate the 'Worked Example' without looking at the solution to test your understanding of the process.
  • Solve problems that require finding the equation of a plane from three non-collinear points.
  • Practice finding the line of intersection between two planes.
  • Review the 'Common Mistakes' section and consciously try to avoid them, such as confusing a normal vector with a direction vector.
4 🌎 Apply to Real Scenarios
  • Model the 'Real-World Examples,' like a tabletop or a wall, by assigning coordinates and deriving their plane equations.
  • Analyze 'Applications of Planes' in fields like computer graphics for rendering surfaces or in physics for analyzing forces on an inclined plane.
  • Solve word problems from the 'Real-World Scenarios' section, such as determining the orientation of a ramp or a roof.
  • Use plane formulas to calculate angles and distances in practical contexts, like finding the shortest distance from a camera to a flat wall.
By systematically moving from foundational theory to practical application, you will develop a deep and confident mastery of plane equations.

Frequently Asked Questions

×

×