The angle between two planes is defined as the angle between their normal vectors (specifically, the acute angle between the normals). This works because the normal vector is perpendicular to every direction in the plane — so the angle between the normals directly captures the “tilt” between the planes.
We use the absolute value of the dot product to ensure 0°≤θ≤90° (the acute angle). If cosθ comes out negative, it means the normals point in roughly opposite directions — but the geometric angle between planes is still the acute version.
Alternative Approach — Check Special Cases
Parallel planes:n1×n2=0 (normals are parallel), or a2a1=b2b1=c2c1.
Perpendicular planes:n1⋅n2=0 (normals are perpendicular).
For our planes: n1⋅n2=−1=0, so not perpendicular; and the ratios 12=−11, so not parallel.
For JEE: this formula works for 3D planes — generalise naturally from 2D lines where angle =tan−11+m1m2m1−m2. In 3D, the cosine form with normal vectors is cleaner and avoids undefined cases (like when lines are perpendicular). Always use ∣n1⋅n2∣ (absolute value) to get the acute angle.
Common Mistake
Students sometimes forget to take the absolute value of n1⋅n2 in the formula, giving cosθ=−61, which leads to an obtuse angle θ>90°. The angle between two planes is always taken as the acute angle (between 0° and 90°). Using the absolute value gives the correct acute angle.
Want to master this topic?
Read the complete guide with more examples and exam tips.