Why an Airliner's Wings Tilt Upward
An airliner's wings tilt up at a small fixed angle, and that tilt is what keeps it from rolling over. That angle, measured between the plane of each wing and the horizontal, is a real angle between two planes, and engineers compute it the same way you are about to.
What Is the Angle Between Two Planes?
Two flat surfaces that are not parallel meet along a straight line, and the opening between them is the dihedral angle. Measuring that opening directly in three dimensions is awkward, so we use a shortcut: the angle between two planes is equal to the angle between their normal vectors. A normal vector is an arrow that points straight out of a plane at a right angle, and every plane written as $Ax + By + Cz + D = 0$ carries the normal $\vec{n} = (A, B, C)$ read straight off the coefficients.
So finding the angle between two planes becomes finding the angle between two vectors, and by convention we report the acute angle, which is why an absolute value appears in the formula. The equation of a plane is where those normal coefficients come from.
What Is the Angle Between Two Planes in Vector Form?
When the planes are given in vector form, $\vec{r}\cdot\vec{n}_1 = d_1$ and $\vec{r}\cdot\vec{n}_2 = d_2$, the angle $\theta$ between them satisfies:
$$\cos\theta = \frac{|\vec{n}_1\cdot\vec{n}_2|}{|\vec{n}_1|,|\vec{n}_2|}$$
Two pieces make this work. The dot product $\vec{n}_1\cdot\vec{n}_2 = a_1a_2 + b_1b_2 + c_1c_2$ multiplies matching components and adds them. The magnitude $|\vec{n}| = \sqrt{a^2 + b^2 + c^2}$ is the length of the vector. Dividing the dot product by the product of the lengths isolates the cosine of the angle, and the bars around the dot product force the result to be positive so $\theta$ comes out acute.
What Is the Angle Between Two Planes in Cartesian Form?
When the planes are given in Cartesian form, $A_1x + B_1y + C_1z + D_1 = 0$ and $A_2x + B_2y + C_2z + D_2 = 0$, read off the normals $(A_1, B_1, C_1)$ and $(A_2, B_2, C_2)$ and substitute into the same formula:
$$\cos\theta = \frac{|A_1A_2 + B_1B_2 + C_1C_2|}{\sqrt{A_1^2 + B_1^2 + C_1^2},\sqrt{A_2^2 + B_2^2 + C_2^2}}$$
The constant terms $D_1$ and $D_2$ never enter the calculation. They shift a plane's position in space but do not change its tilt, so they play no part in the angle. This mirrors the way the angle between two lines depends on direction, not position.
How Do You Find the Angle Between Two Planes?
The procedure is the same for both forms:
Read off each normal. Take the coefficients of $x$, $y$, $z$ as $\vec{n}_1$ and $\vec{n}_2$; ignore the constant.
Compute the dot product $\vec{n}_1\cdot\vec{n}_2$.
Find each magnitude $|\vec{n}_1|$ and $|\vec{n}_2|$.
Divide the absolute dot product by the product of magnitudes to get $\cos\theta$.
Take the inverse cosine $\theta = \cos^{-1}(\ldots)$ to get the angle.
When Are Two Planes Parallel or Perpendicular?
Two special cases fall straight out of the dot product:
Parallel planes. The normals point the same way, so $(A_1, B_1, C_1)$ is a scalar multiple of $(A_2, B_2, C_2)$. The angle between the planes is $0^\circ$.
Perpendicular planes. The normals are at right angles, so their dot product is zero: $A_1A_2 + B_1B_2 + C_1C_2 = 0$. The angle between the planes is $90^\circ$.
These two tests are often quicker than the full formula, because a glance at the coefficients settles the case.
Where Is the Angle Between Two Planes Used?
"How steeply do these two surfaces meet?"
That is the question the formula answers, and it matters wherever flat surfaces join.
Aircraft stability. The upward dihedral of a wing is set to a precise angle so that a roll produces a self-correcting force. Too little and the plane wanders; too much and it wobbles.
Crystallography. Mineral faces meet at angles that are constant for a given crystal type, a fact used to identify crystals by measuring the angle between their faces.
Architecture and roofing. The pitch where two roof panels meet at a ridge, or where a folded-plate structure bends, is a dihedral angle that decides drainage and load.
3D graphics and games. Lighting and collision engines constantly compute the angle between surface planes to decide how bright a face looks or whether two objects touch.
A Bhanzu trainer teaching this usually starts by folding a sheet of paper along a crease and asking students to point the normals, so the abstract vectors have something physical to sit on before the algebra begins.
Examples of Angle Between Two Planes
The set runs from a direct vector-form calculation, through the most common sign trap, to the parallel and perpendicular tests and a real-world dihedral.
Example 1
Find the angle between the planes $\vec{r}\cdot(\hat{i} + 2\hat{j} + 2\hat{k}) = 5$ and $\vec{r}\cdot(2\hat{i} + 2\hat{j} + \hat{k}) = 3$.
Read the normals $\vec{n}_1 = (1, 2, 2)$ and $\vec{n}_2 = (2, 2, 1)$.
$$\vec{n}_1\cdot\vec{n}_2 = (1)(2) + (2)(2) + (2)(1) = 8$$
$$|\vec{n}_1| = \sqrt{1 + 4 + 4} = 3$$
$$|\vec{n}_2| = \sqrt{4 + 4 + 1} = 3$$
$$\cos\theta = \frac{|8|}{3 \times 3} = \frac{8}{9}$$
$$\theta = \cos^{-1}\left(\frac{8}{9}\right) \approx 27.27^\circ$$
Final answer: $\theta \approx 27.27^\circ$.
Example 2
Find the angle between the planes with normals $\vec{n}_1 = (1, -2, 2)$ and $\vec{n}_2 = (2, 2, -1)$.
Wrong attempt. A student computes the dot product $\vec{n}_1\cdot\vec{n}_2 = 2 - 4 - 2 = -4$ and, skipping the absolute value, writes $\cos\theta = \frac{-4}{9}$, giving $\theta \approx 116.4^\circ$. An obtuse answer looks fine until you remember the angle between two planes is reported as the acute one.
The fix. The formula takes the modulus of the dot product on purpose, so that a negative value does not push $\theta$ past $90^\circ$:
$$\cos\theta = \frac{|-4|}{3 \times 3} = \frac{4}{9}$$
$$\theta = \cos^{-1}\left(\frac{4}{9}\right) \approx 63.61^\circ$$
Final answer: $\theta \approx 63.61^\circ$. The obtuse $116.4^\circ$ and this acute $63.61^\circ$ add to $180^\circ$; the convention keeps the acute one.
Example 3
Find the angle between the planes $2x + y - 2z = 5$ and $3x - 6y - 2z = 7$ in Cartesian form.
Normals are $(2, 1, -2)$ and $(3, -6, -2)$.
$$A_1A_2 + B_1B_2 + C_1C_2 = (2)(3) + (1)(-6) + (-2)(-2) = 4$$
$$\sqrt{4 + 1 + 4} = 3, \qquad \sqrt{9 + 36 + 4} = 7$$
$$\cos\theta = \frac{|4|}{3 \times 7} = \frac{4}{21}$$
$$\theta = \cos^{-1}\left(\frac{4}{21}\right) \approx 79.02^\circ$$
Final answer: $\theta \approx 79.02^\circ$. The check students skip is confirming the normals came from the coefficients only, leaving the constants $5$ and $7$ out entirely.
Example 4
Show that the planes $2x - 3y + 4z = 1$ and $4x - 6y + 8z = 9$ are parallel.
Their normals are $(2, -3, 4)$ and $(4, -6, 8)$. Test for a scalar multiple:
$$(4, -6, 8) = 2 \times (2, -3, 4)$$
The second normal is exactly twice the first, so the normals point the same way.
Final answer: the planes are parallel, and the angle between them is $0^\circ$.
Example 5
Are the planes $x + 2y + 2z = 1$ and $2x + 2y - 3z = 4$ perpendicular?
Normals are $(1, 2, 2)$ and $(2, 2, -3)$. Test the dot product:
$$(1)(2) + (2)(2) + (2)(-3) = 2 + 4 - 6 = 0$$
A zero dot product means the normals are at right angles.
Final answer: yes, the planes are perpendicular, so the angle is $90^\circ$.
Example 6
A laptop's screen lies in the plane $x + 2y + 2z = 0$ and its keyboard base in the plane $x + 2y - 2z = 0$. Find the opening angle between them.
Normals are $(1, 2, 2)$ and $(1, 2, -2)$.
$$\vec{n}_1\cdot\vec{n}_2 = (1)(1) + (2)(2) + (2)(-2) = 1$$
$$|\vec{n}_1| = 3, \qquad |\vec{n}_2| = 3$$
$$\cos\theta = \frac{|1|}{3 \times 3} = \frac{1}{9}$$
$$\theta = \cos^{-1}\left(\frac{1}{9}\right) \approx 83.62^\circ$$
Final answer: the screen and base meet at about $83.62^\circ$.
Common Mistakes
Mistake 1: Pulling the wrong numbers into the normal
Where it slips in: Reading the normal vector from a plane's equation.
Don't do this: Include the constant term, treating $Ax + By + Cz + D = 0$ as having a four-number normal $(A, B, C, D)$.
The correct way: The normal is only $(A, B, C)$, the coefficients of $x$, $y$, $z$. The constant $D$ locates the plane in space and never enters the angle. Students meeting 3D planes for the first time reach for all four numbers out of habit.
Mistake 2: Dropping the absolute value
Where it slips in: After a dot product comes out negative.
Don't do this: Feed the raw negative cosine into the inverse cosine and report an obtuse angle.
The correct way: Take the modulus of the dot product, as the formula shows, so the reported angle stays acute. The rusher who computes fast and skips the bars lands an angle bigger than $90^\circ$ and rarely notices.
Mistake 3: Confusing this with the angle between a line and a plane
Where it slips in: Mixing up the plane-plane formula with the line-plane one.
Don't do this: Use the cosine formula when the problem actually asks for the angle between a line and a plane, which uses sine.
The correct way: For two planes, work with their normals and cosine. For a line and a plane, the angle uses $\sin\theta$ because you measure against the normal, not along it. Keep the two setups separate.
Conclusion
The angle between two planes is the angle between their normal vectors, found from $\cos\theta = \frac{|\vec{n}_1\cdot\vec{n}_2|}{|\vec{n}_1||\vec{n}_2|}$.
Read each normal $(A, B, C)$ straight off the plane's equation and leave the constant $D$ out.
The absolute value keeps the reported angle acute, which is the standard convention.
Parallel planes have proportional normals ($0^\circ$); perpendicular planes have normals with a zero dot product ($90^\circ$).
Dihedral angles like this decide wing stability, crystal identity, roof pitch, and 3D-graphics lighting.
To go deeper into 3D coordinate geometry with a teacher, explore Bhanzu's algebra tutor sessions, a high school math tutor, or structured math classes online. Want a trainer to walk your child through planes and vectors step by step? Book a free demo class.
Read More
Distance Between Two Planes — the companion measurement to the angle.
Distance Between Point and Plane — a related normal-vector calculation.
Angle Between Two Vectors — the underlying result that powers this formula.
Cross Product of Two Vectors — another way vectors describe orientation.
Cartesian Form — how planes and lines are written in coordinates.
Scalar Product — the dot product in more detail.
Was this article helpful?
Your feedback helps us write better content
