Line-Plane Intersection — Definition, Formula & Examples
A line-plane intersection is the point where a line in three-dimensional space passes through a plane. If the line is not parallel to the plane, it crosses the plane at exactly one point.
Given a line defined parametrically as and a plane defined by , the intersection occurs at the parameter value , provided . If , the line is parallel to the plane and either misses it entirely or lies within it.
Key Formula
Where:
- = Parameter value at which the line meets the plane
- = Normal vector of the plane
- = A known point on the line
- = Direction vector of the line
- = A known point on the plane
How It Works
To find the intersection, express the line in parametric form using a point and a direction vector. Substitute the parametric equations into the equation of the plane. Solve the resulting equation for the parameter . Plug back into the parametric equations to get the coordinates of the intersection point. If the denominator equals zero, the line is parallel to the plane and no unique intersection exists.
Worked Example
Problem: Find where the line through (1, 0, 2) with direction vector (0, 1, -1) intersects the plane 2x + y + z = 10.
Write parametric equations: Express the line parametrically using the given point and direction.
Substitute into the plane equation: Replace x, y, and z in 2x + y + z = 10 with the parametric expressions.
Interpret the result: The equation 4 = 10 is a contradiction, which means the line is parallel to the plane and never intersects it. Check: the normal vector is (2, 1, 1) and the direction is (0, 1, -1). Their dot product is 0 + 1 - 1 = 0, confirming the line is parallel.
Answer: No intersection exists — the line is parallel to the plane and does not lie in it.
Why It Matters
Ray-plane intersection is fundamental in computer graphics, where every pixel on screen is determined by casting a ray and finding where it strikes a surface. It also appears in multivariable calculus and linear algebra when analyzing geometric relationships in three dimensions.
Common Mistakes
Mistake: Forgetting to check whether the line is parallel to the plane before solving for t.
Correction: Always compute the dot product of the plane's normal vector and the line's direction vector first. If it equals zero, no unique intersection point exists.
