3.6.10 · D23D Geometry

Visual walkthrough — Angle between line and plane

1,932 words9 min readBack to topic

Step 1 — Draw the two objects and give each ONE arrow

WHAT. We have a flat surface (a plane) and a straight infinite thread (a line). Each one gets a single arrow that captures "which way it points."

  • The line's arrow is its direction vector, written . It just says which way the thread runs. A little arrow on top means "this is a vector — a thing with a length and a direction."
  • The plane's arrow is its normal, written : the arrow that pokes straight out of the surface, at a perfect square corner () to every direction lying flat in the plane.

WHY. A whole plane is hard to point at — it faces every flat direction at once. So we represent it by the one direction it does not contain: the perpendicular arrow . This is the same that comes out of the plane's equation , namely ; and is read from direction ratios.

PICTURE.

Figure — Angle between line and plane

Step 2 — Which angle do we actually want?

WHAT. The line pokes out of the plane like a leaning stick. Shine light straight down along the normal; the stick casts a shadow flat inside the plane. The angle we want, called ("theta", just a name for our angle), is the angle between the stick and its shadow.

WHY. "Angle between line and plane" has to mean the smallest tilt of the line away from the flat surface — and that smallest tilt is exactly measured against the shadow lying in the plane. Not against the normal, not against some random line in the plane — against the shadow, the line's own reflection flattened down.

PICTURE. The red is the gap between the leaning stick (blue) and its shadow (pale yellow) on the board.

Figure — Angle between line and plane

Step 3 — The problem: we can't measure to a shadow directly

WHAT. The shadow lives inside the plane. We were never handed the shadow's direction — we only have (the stick) and (the pole). So measuring against the shadow directly is impossible with what we hold.

WHY. We need a detour: measure the stick against something we do have. We have the normal . Call the angle between the stick and the pole the name ("gamma", another angle-name).

PICTURE. Now three players share one right triangle: stick , pole , shadow. Notice the small square where pole meets shadow — that square is .

Figure — Angle between line and plane

The square corner exists because is perpendicular to everything flat in the plane (Step 1), and the shadow is flat in the plane. So the pole meets the shadow at exactly .


Step 4 — Turn "angle between two arrows" into arithmetic: the dot product

WHAT. To get from the two arrows and , we use the Dot product. It is the one machine that eats two arrows and spits out a number tied to the angle between them:

WHY this tool and not another? We want an angle out of two directions. The dot product is precisely the operation defined so that . Nothing else converts two raw arrows straight into a cosine. So it is not a choice of convenience — it is the only key that fits this lock.

Term by term:

  • — multiply matching components and add: . This is one plain number.
  • — the length of the stick arrow, . Dividing by it strips length away so only direction matters.
  • — the length of the pole arrow; same job, strips its length.
  • The whole right side is therefore "pure angle information," equal to .

PICTURE. Watch how projecting onto produces .

Figure — Angle between line and plane

Step 5 — Cash in the right angle: and are complementary

WHAT. In the right triangle of Step 3, the three angles sum to , and one of them is the square corner. The other two are (stick-to-shadow) and (stick-to-pole). So:

WHY. Two angles that add to are called complementary. This is the hinge of the whole topic: the line's tilt away from the plane and its tilt away from the normal are always leftovers of each other, because the normal is exactly from the plane.

PICTURE. The pale-yellow and the chalk-blue fitting together to fill the square corner.

Figure — Angle between line and plane

Step 6 — Swap for

WHAT. Put into the cosine. There is a fixed identity — visible in the very same triangle — that

WHY. In any right triangle, the cosine of one non-right angle equals the sine of the other (they share the same two sides, just renamed "opposite/adjacent" from each viewpoint). So is — no approximation. Substituting:

This is the answer to the parent's riddle "why and not ?" We measured against the normal (giving a cosine), but the normal is off the plane, and that flips into . Contrast: Angle between two lines and Angle between two planes measure against the actual reference directions, so they keep .

PICTURE. Same triangle, two viewpoints: from it's a cosine, from it's a sine — one number, two names.

Figure — Angle between line and plane

Step 7 — Wrap it in absolute value (handle both stick directions)

WHAT. The stick's arrow could be drawn pointing "up out of" the plane or "down into" it — same physical line, opposite arrow. Flipping flips the sign of , which could make our right side negative. But forces . So we clamp the sign:

WHY. The bars mean "throw away the minus sign, keep the size." A line has no built-in direction, so its formula must not care which way we drew the arrow. The absolute value guarantees a valid, non-negative sine every time.

PICTURE. Same geometry, drawn both ways; the shaded value is identical after .

Figure — Angle between line and plane

Cartesian twin. Reading off the symmetric line and off the plane:


Step 8 — The degenerate cases, drawn

WHAT. Two edge cases decide whole problems, so we picture them explicitly.

Case A — dot product is zero (): line PARALLEL to plane. If the numerator vanishes, , so . Geometrically , and being perpendicular to the pole means lying flat in the plane's directions — the stick lies along the surface. (Same test drives Coplanarity of lines.)

Case B — parallel to : line PERPENDICULAR to plane. Then , so and : the stick stands straight up along the pole.

PICTURE. Both extremes on one board: flat stick () and vertical stick ().

Figure — Angle between line and plane

The one-picture summary

Everything above compressed: stick , shadow, pole , the square corner, and the two complementary angles — with the final boxed formula riding alongside.

Figure — Angle between line and plane
Recall Feynman retelling — the whole walkthrough in plain words

Poke a stick out of the flat ground and stand a perfectly straight flagpole next to it. Shine a light straight down the pole so the stick throws a shadow that lies flat on the ground. The angle between the stick and its shadow — that leaning-over angle — is what we call the line–plane angle, . We can't reach into the shadow to measure it, but we can measure the angle between the stick and the pole; call that . The dot product is the machine that hands us from the two arrows, because it's literally built to turn two directions into a cosine. Now the magic: the pole meets the flat ground at a perfect square corner, . So the stick's tilt from the pole and its tilt from the ground are leftovers of each other — they always add up to . And "cosine of the leftover" is exactly "sine of the angle." That single twist is why this topic uses while two-line and two-plane problems use . Finally, a stick doesn't care which way you drew its arrow, so we wrap the top in absolute-value bars to keep the answer positive. If the dot product comes out zero, the stick lies flat (parallel, ); if the stick points straight up the pole, it's perpendicular (). That's the entire story.


Connections