3.6.9 · D13D Geometry

Foundations — Angle between two planes

2,162 words10 min readBack to topic

Before you can trust the formula on the Angle between two planes page, every squiggle in it has to mean something you can see. Below we build each symbol from nothing, in an order where each one leans only on the ones already built.


1. A point in 3D — the triple

Picture it. Stand at the corner of a room. The two floor edges and the vertical edge meeting at that corner are your three axes. Any fly in the room is pinned down by "3 steps along this wall, 2 along that wall, 1 up" .

Figure — Angle between two planes

Why the topic needs it. A plane is made of points, and every point obeys one equation. Without a way to name points there is no equation, no coefficients, no normal.


2. A vector — an arrow

Why the angle brackets? We use for vectors so you never confuse the arrow (a direction) with the point (a location). The parent note's normal is a direction, so it wears angle brackets.

Why the topic needs it. The normal — the star of the whole topic — is a vector. And the angle we want is an angle between two of them.


3. The length of a vector —

Why this formula — where does the square root come from? It is Pythagoras done twice. Walk east then north: the diagonal is . Now rise straight up: the new diagonal is . So is literally the straight-line distance the arrow spans.

Figure — Angle between two planes

Why the topic needs it. The angle formula divides by . That division is what turns a raw dot product into a clean cosine. See Normal vector and dot product.


4. What "perpendicular" means — the right angle

Why the topic needs it. The normal is defined as the arrow perpendicular to the whole sheet. And two planes are perpendicular exactly when their normals are. So "perpendicular" is the hinge word of the topic.


5. The dot product —

This is the engine. We build it in two halves: the number recipe, then the geometric meaning — and crucially, why the two are the same thing.

Figure — Angle between two planes

Why this tool and not another? We want an angle out of two arrows given by their components. The dot product is the one operation that connects component arithmetic (easy to compute) with (the angle we want) — and the bridge above proves it isn't a coincidence. One multiply-and-add, no triangle-drawing each time. That is exactly why the parent formula is built on it.

Reading the sign — all three cases:

Sign of Angle Picture
positive acute () arrows lean the same way
zero exactly arrows form a square corner
negative obtuse () arrows lean apart

6. and its undo button

Why the modulus appears in the topic. A plane's equation can be multiplied by without changing the plane, which flips its normal and flips the sign of . Since the plane is the same, we don't want two different answers. Wrapping the dot product in (here the bars mean absolute value of a number, per §3) forces a non-negative cosine, so always lands in : the acute wedge. (That's why the parent uses with , while Angle between a line and a plane uses .)


7. The equation of a plane —

Why are the coefficients the normal? (a picture-proof.) Take two points and both on the plane. The arrow from to lies flat inside the sheet. Plug both points into the equation and subtract: and the left side is precisely . A dot product equal to zero means perpendicular (§5). So is perpendicular to every flat direction in the sheet — the definition of the normal. See Equation of a plane.

Figure — Angle between two planes

How it all feeds the topic

Point x y z

Vector arrow a b c

Length sqrt of a2+b2+c2

Dot product a dot b

Perpendicular = right angle

Dot = length times length times cos theta

cos theta and its inverse

Plane ax+by+cz+d=0

Normal is a b c

Angle between two planes


Equipment checklist

Cover the right side and answer out loud; reveal to check.

Read the triple — is it a place or a direction?
A place (a point); the same numbers in would be a direction (a vector).
Compute
.
Do the bars in and in mean the same thing?
No — around a vector they mean length; around a number they mean absolute value. Both give something non-negative.
Why is length always ?
Each component is squared before adding, so nothing negative survives inside the root.
State the dot product recipe for and
— multiply matching parts, add, get one number.
Why does that recipe equal ?
The Law of Cosines applied to the triangle of forces the two expressions for to match.
What does tell you geometrically?
The two arrows are perpendicular (, since ).
What does ask?
"Which angle has cosine ?" — the answer is , not .
Given a plane , write its normal
— just the coefficients of .
Turn into vector form
(rename to get ); the sign flip is just renaming the constant.
Why the absolute value in the plane-angle formula?
Flipping a plane's equation flips its normal's sign; cancels that so we always report the acute angle.

Connections