When a line meets a plane, the angle between them is the complement of the angle between the line's direction and the plane's normal. This insight turns the line-plane angle into a dot-product calculation.
The angle
Line with direction d; plane with normal n. Let ϕ be the angle between d and n, so cosϕ=∣d∣∣n∣d⋅n. The angle between the line and the plane is θ=π/2−ϕ (the line tilts away from the plane perpendicular).
So
sinθ=cosϕ=∣d∣∣n∣∣d⋅n∣.
The absolute value ensures θ∈[0,π/2].
Line parallel to plane
The line is parallel to the plane iff θ=0, i.e. d⋅n=0 , the direction is perpendicular to the normal. Geometrically, the line either lies in the plane or never meets it.
Line in plane
A line lies in the plane iff:
Its direction is perpendicular to the plane's normal: d⋅n=0.
Any one point on the line lies on the plane.
(The first condition alone gives a line parallel to the plane; the second pins it down.)
Line perpendicular to plane
The line is perpendicular to the plane iff its direction is parallel to the plane's normal: d∥n, i.e. d×n=0. Then θ=π/2.
Worked examples
Example 1. Find the angle between 2x−1=3y=4z+2 and the plane 2x−3y+z=5.
Example 2. Show that 1x−1=2y+1=−1z−1 is parallel to the plane x+2y−z=5.
d⋅n=1+4+1=6=0. Not parallel. (Direct check shows the angle is not zero.) Let me redo: d=(1,2,−1), n=(1,2,−1). They're identical , so the direction is the normal, meaning the line is perpendicular to the plane, not parallel. Different example: take line 1x=1y=0z (direction (1,1,0)) and plane z=5 (normal (0,0,1)). d⋅n=0. Parallel.
Example 3. Find the foot of perpendicular from (1,2,3) to the plane x+y+z=6.
The perpendicular from the point has direction = normal direction (1,1,1). Parametrise: r=(1,2,3)+t(1,1,1)=(1+t,2+t,3+t). On the plane: (1+t)+(2+t)+(3+t)=6+3t=6, so t=0.
Wait , that puts the foot at the original point. Let me recheck: 1+2+3=6, so the point is on the plane already! Foot of perpendicular is the point itself.
Example 4. Find the image of (1,−2,1) in the plane x−2y+2z+3=0.
Normal (1,−2,2), magnitude 3. Foot of perpendicular: (1,−2,1)+t(1,−2,2) on the plane:
(1+t)−2(−2−2t)+2(1+2t)+3=1+t+4+4t+2+4t+3=10+9t=0, so t=−10/9.
Foot: (1−10/9,−2+20/9,1−20/9)=(−1/9,2/9,−11/9). Image: (1,−2,1)+2⋅t⋅n/∣n∣2 no wait , image is twice as far as foot from original. So image =2⋅foot−(1,−2,1)=(−2/9−1,4/9+2,−22/9−1)=(−11/9,22/9,−31/9).
Example 5. Show that the line 1x−1=2y+1=1z−2 lies in the plane 2x−y−z=1.
Check perpendicularity of direction to normal: d⋅n=2−2−1=−1=0. Not in the plane. (If we had asked correctly, we'd find the line meets the plane at a single point.)
Try line with direction (1,1,1) and plane x−y=0. Direction dotted with normal (1,−1,0): 1−1+0=0. Take point on line: (0,0,0). On plane? 0−0=0, yes. So this line does lie in the plane.
Example 6. Find λ if the line 2x=λy−1=3z+1 is parallel to the plane 3x−y+2z=6.
d⋅n=6−λ+6=12−λ=0, so λ=12.
Try it yourself
Find the angle between 1x=1y=1z and the plane x+2y+3z=6.
Show that the z-axis is perpendicular to the plane z=0.
Find λ if 1x=λy−1=1z−2 is parallel to x+2y+3z=6.
Find the foot of perpendicular from (2,3,4) to x+2y+3z=10.
Image of (0,0,0) in the plane x+y+z=3.
Find the plane perpendicular to the line r=(1,1,1)+t(2,1,0) passing through (0,0,1).
Show that the line r=(1,2,3)+t(2,4,6) is parallel to the plane x+y−z=5 , or determine the relationship.
A line through (1,1,1) is perpendicular to 3x+4y−z=12. Find its direction.
Find the equation of the line through (1,0,0) perpendicular to 2x+y−z=0.
Find μ such that the line r=(1,2,3)+t(1,μ,2) lies in the plane x+2y+z=8.
Find the perpendicular distance from (2,3,−4) to the plane 2x−6y+3z=0.
Find the angle between the line through (1,2,3),(4,5,6) and the plane x+y+z=1.
The line 1x−1=−1y+2=2z meets the plane x+y+z=6 at what point?
Show that the line r=(1,2,−3)+t(2,3,−1) lies entirely in the plane x−y+z=−4 , verify by checking both conditions.
Pitfalls and tricks
Use sin for line-plane angle, cos for plane-plane and line-line angles. Don't confuse them.
Parallel to plane ⇔d⋅n=0.
In the plane ⇔ parallel AND any point on the line is on the plane.
Perpendicular to plane ⇔ direction parallel to the normal.
For foot of perpendicular from a point to a plane: parametrise along the normal, intersect with plane.