How to Find the Distance Between a Line and a Plane

A line l parallel to a plane

If a line and a plane don’t intersect, they will always be parallel. Meaning, the distance between the line and the plane always stays the same. To check if the line and the plane are parallel to each other, you can take the dot product of the directional vector of the line and the normal vector to the plane. If the dot product is zero, the line does not intersect with the plane. To find the distance between a line and a plane, you just pick a point on the line and use the equation for the distance between a point and a plane. You can use this method:

Rule

Distance Between Line and Plane

1.
Let P = (x1,y1,z1) be a point on the line l and let
ax + by + cz + d = 0

be the equation of the plane α. Then nα = (a,b,c) is a normal vector to the plane α.

2.
Put the values into the formula for the distance from a point to a plane to find the distance.

Example 1

You have the line

l: x (t) = 1 + t, y (t) = 3t, z (t) = 1 + 4t

l: x (t) = 1 + t,y (t) = 3t,z (t) = 1 + 4t

and the plane

α: x 3y + 2z = 9.

Find the distance between them.

1.
If you set t = 0, you get that P = (1, 0, 1) is a point on l. A normal vector to α is n = (1,3, 2).
2.
When you insert this into the formula, you get D = |1 1 3 0 + 2 1 9| 12 + (3 ) 2 + 22 = |1 + 0 + 2 9| 1 + 9 + 4 = |6| 14 = 6 14.

Want to know more?Sign UpIt's free!