Distance from Point to Plane Calculator

Calculate the perpendicular distance from a point to a plane in 3D space. Shows signed distance, normal vector, foot of perpendicular, formula breakdown, and verification.

Plane: ax + by + cz + d = 0

Point P₀

Distance
0.666667
|2| / 3.0000 = 0.666667
Signed Distance
0.666667
Positive = same side as normal, negative = opposite
Side of Plane
Same as normal
Determined by the sign of (ax₀+by₀+cz₀+d)
Plane Equation
2x + -1y + 2z + -4 = 0
Normal vector: ⟨2, -1, 2⟩
Unit Normal
⟨0.6667, -0.3333, 0.6667⟩
|n| = 3.000000
Foot of Perpendicular
(0.555556, 2.222222, 2.555556)
Closest point on the plane to P₀
Normal Magnitude
3.000000
√(a² + b² + c²)
Numerator
2.000000
ax₀ + by₀ + cz₀ + d = 2×1 + -1×2 + 2×3 + -4

Schematic Diagram

Plane: 2x+-1y+2z+-4=0P₀ (1,2,3)Footd = 0.67

Formula Breakdown

d = |ax₀ + by₀ + cz₀ + d| / √(a² + b² + c²)
d = |(2)(1) + (-1)(2) + (2)(3) + (-4)| / √(2² + -1² + 2²)
d = |2 + -2 + 6 + -4| / √(4 + 1 + 4)
d = |2| / 3.0000
d = 2.0000 / 3.0000
d = 0.666667

Common Plane Distances

PlaneEquationDistance Formula (simplified)
xy-planez = 0d = |z₀|
xz-planey = 0d = |y₀|
yz-planex = 0d = |x₀|
x + y + z = kx+y+z−k = 0d = |x₀+y₀+z₀−k| / √3
Parallel to xyz = hd = |z₀ − h|
Generalax+by+cz+d=0|ax₀+by₀+cz₀+d| / √(a²+b²+c²)
Verification
CheckValueExpected
Foot on plane?-0.00000000≈ 0
|P₀ − Foot|0.6666670.666667
Perpendicular?0.00000000≈ 0 (cross product)
Planning notes, formulas, and examples

About the Distance from Point to Plane Calculator

The **Distance from Point to Plane Calculator** computes the shortest (perpendicular) distance from a point P₀ = (x₀, y₀, z₀) to a plane ax + by + cz + d = 0 in three-dimensional space. It displays both the unsigned distance and the signed distance, plus the unit normal vector, foot of perpendicular, numerator breakdown, and a schematic diagram.

The point-to-plane distance formula d = |ax₀ + by₀ + cz₀ + d| / √(a² + b² + c²) is one of the most important results in analytic geometry and is widely used in computer graphics (collision detection, ray tracing), physics (electrostatics, optics), engineering (tolerancing, CNC machining), and machine learning (support vector machines).

This calculator supports two methods for specifying the plane: either entering the four coefficients (a, b, c, d) of the standard-form equation directly, or providing three non-collinear points on the plane from which the equation is automatically derived via the cross product. Seven presets cover the three coordinate planes (xy, xz, yz), the diagonal plane x+y+z=1, and more complex examples.

The output includes eight cards with the unsigned distance, signed distance (indicating which side of the plane the point lies on), the plane equation, unit normal, foot of perpendicular (closest point on the plane), normal magnitude, and full numerator computation. A schematic SVG diagram shows the spatial relationship, and a collapsible verification section confirms mathematically that the foot lies on the plane and the perpendicular direction is correct.

When This Page Helps

Distance from Point to Plane Calculator helps you avoid repetitive setup mistakes when solving trigonometric and coordinate-geometry problems. Instead of recalculating conversions, signs, and edge cases by hand, you can test inputs immediately, inspect intermediate values, and confirm final answers before submitting work or using numbers in downstream calculations. It surfaces key outputs like Distance, Signed Distance, Side of Plane in one pass.

How to Use the Inputs

  1. Enter the required inputs (Plane Input Method, a, b).
  2. Complete the remaining fields such as c, d, P₁ x.
  3. Review the output cards, especially Distance, Signed Distance, Side of Plane, Plane Equation.
  4. Compare the result with the formula, diagram, or example values to catch sign, unit, or rounding mistakes.
Formula used
d = |ax₀ + by₀ + cz₀ + d| / √(a² + b² + c²). Signed distance = (ax₀ + by₀ + cz₀ + d) / √(a² + b² + c²). Foot = P₀ − (signed distance) · n̂ where n̂ is the unit normal.

Example Calculation

Result: Distance = 0

The point (1,2,3) satisfies x+y+z-6=0, so it lies on the plane and the perpendicular distance is 0.

Tips & Best Practices

  • Positive signed distance means the point is on the same side as the normal vector.
  • If the signed distance is zero, the point lies exactly on the plane.
  • The foot of perpendicular is the closest point on the plane to P₀.
  • When entering three points to define a plane, ensure they are not collinear.
  • For coordinate planes (xy, xz, yz), the distance simplifies to a single coordinate.

What This Distance from Point to Plane Calculator Solves

This calculator is tailored to distance from point to plane calculator workflows, including common input modes, unit handling, and special-case behavior. It is designed for fast checking during homework, exam preparation, technical drafting, and coding tasks where trigonometric consistency matters.

How To Interpret The Outputs

Use the primary result together with supporting outputs to verify direction, magnitude, and validity. Cross-check against known identities or geometric constraints, and confirm that angle ranges, sign conventions, and domain restrictions are satisfied before using the numbers elsewhere.

Study And Practice Strategy

A reliable way to improve is to solve once manually, then verify with the calculator and explain any mismatch. Repeat this on varied examples and edge cases. The built-in preset scenarios for quick trials, comparison tables for side-by-side validation, visual cues that make trends and quadrants easier to read help you build pattern recognition and reduce sign or conversion errors over time.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • The formula is d = |ax₀ + by₀ + cz₀ + d| / √(a² + b² + c²), where the plane equation is ax + by + cz + d = 0 and the point is (x₀, y₀, z₀).