3D Geometry: Numerical Problems Set (13)

easy 2 min read

Question

Find the distance from the point P(1,2,3)P(1, 2, 3) to the plane 2x3y+6z=52x - 3y + 6z = 5.

Solution — Step by Step

For a point (x1,y1,z1)(x_1, y_1, z_1) and plane ax+by+cz=dax + by + cz = d:

D=ax1+by1+cz1da2+b2+c2D = \frac{|ax_1 + by_1 + cz_1 - d|}{\sqrt{a^2 + b^2 + c^2}}

a=2,b=3,c=6,d=5a = 2, b = -3, c = 6, d = 5. Point: (1,2,3)(1, 2, 3).

Numerator: 2(1)3(2)+6(3)5=26+185=9=9|2(1) - 3(2) + 6(3) - 5| = |2 - 6 + 18 - 5| = |9| = 9.

Denominator: 4+9+36=49=7\sqrt{4 + 9 + 36} = \sqrt{49} = 7.

D=97D = \frac{9}{7}

Final answer: D=97D = \dfrac{9}{7} units.

Why This Works

The formula comes from projecting the vector from any point on the plane to PP onto the unit normal of the plane. The normal vector to ax+by+cz=dax + by + cz = d is (a,b,c)(a, b, c), and dividing by its magnitude gives the unit normal.

The absolute value handles the case where the point is on either side of the plane — distance is always non-negative.

Alternative Method

Vector form. Plane: rn=d\vec{r} \cdot \vec{n} = d with n=(2,3,6)\vec{n} = (2, -3, 6). Position vector of PP: p=(1,2,3)\vec{p} = (1, 2, 3).

D=pndn=97=97D = \frac{|\vec{p}\cdot\vec{n} - d|}{|\vec{n}|} = \frac{|9|}{|7|} = \frac{9}{7}

Same.

Always normalise the plane equation if asked for “perpendicular distance in vector form” — divide both sides by n|\vec{n}| so that the right-hand side directly gives the signed distance.

Common Mistake

Students often forget the absolute value and get a negative distance, then panic. Distance is a magnitude — always positive. The sign of ax1+by1+cz1dax_1 + by_1 + cz_1 - d tells you which side of the plane the point is on, not the distance.

Another trap: writing the plane equation as 2x3y+6z+5=02x - 3y + 6z + 5 = 0 (moving 55 to the LHS with sign flip) and then plugging d=5d = 5 — that double-counts. Either keep the form ax+by+cz=dax + by + cz = d with d=5d = 5, or use ax+by+cz+d=0ax + by + cz + d' = 0 with d=5d' = -5 and compute ax1+by1+cz1+d|ax_1 + by_1 + cz_1 + d'|.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next