NDA Maths · 3D Geometry

The Plane

A plane is fixed by a point and a normal direction; its equation, distances, and angles all read off the normal ⟨a, b, c⟩.

Why this matters

Fourteen PYQs spanning EASY to HARD. The plane's normal vector is the master key: it gives the equation, the angle between two planes, the distance from a point, and the foot of a perpendicular. Six concepts cover the lot — equation forms, intercepts, the three-point plane, distances, angles, and the plane-through-intersection pencil.

Concept 1 of 6

Equation of a plane and its normal

Intuition

The coefficients in ax+by+cz=dax + by + cz = d ARE the components of the plane's normal vector a,b,c\langle a, b, c\rangle. So building a plane is mostly about finding its normal: a plane perpendicular to a given line just borrows that line's direction ratios as its normal.

Definition

The general plane is ax+by+cz=dax + by + cz = d with normal a,b,c\langle a, b, c\rangle. Point-normal form: the plane through (x0,y0,z0)(x_0,y_0,z_0) with normal a,b,c\langle a,b,c\rangle is a(xx0)+b(yy0)+c(zz0)=0a(x-x_0) + b(y-y_0) + c(z-z_0) = 0. Parallel planes share the same normal (only dd differs).

Point-normal form

a(xx0)+b(yy0)+c(zz0)=0a(x - x_0) + b(y - y_0) + c(z - z_0) = 0
  • a,b,c\langle a,b,c\ranglenormal direction ratios
  • (x0,y0,z0)(x_0,y_0,z_0)a point on the plane

Diagram · plane, normal & distance from origin (drag to rotate)

n⃗ON

Shortest path from O to the plane runs along the normal to the foot N; its length is |d| / √(a²+b²+c²).

Worked example

Find the equation of the plane through (2,1,3)(2, -1, 3) perpendicular to the line with direction ratios 1,4,2\langle 1, 4, 2\rangle.
  1. Perpendicular to that line → the plane's normal IS 1,4,2\langle 1, 4, 2\rangle.
  2. Point-normal form: 1(x2)+4(y+1)+2(z3)=01(x-2) + 4(y+1) + 2(z-3) = 0.
  3. Expand: x+4y+2z4=0x + 4y + 2z - 4 = 0.
Answer:x+4y+2z=4x + 4y + 2z = 4.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 13D GeometryEASY
What is the equation of the plane passing through the point (1,1,1)(1,1,1) and perpendicular to the line whose direction ratios are 3,2,1\langle 3,2,1 \rangle?

[Q65 · Apr · 2025]

Concept 2 of 6

Intercept form and special planes

Intuition

If a plane cuts the axes at a,b,ca, b, c, its equation is the clean intercept form xa+yb+zc=1\frac{x}{a}+\frac{y}{b}+\frac{z}{c}=1. And planes parallel to a coordinate plane are the simplest of all — z=kz = k is everything at height kk, a plane parallel to the XY-plane.

Definition

Intercept form: a plane with x-, y-, z-intercepts a,b,ca, b, c is xa+yb+zc=1\frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1. Special planes: z=kz = k is parallel to the XY-plane; x=kx = k parallel to the YZ-plane; y=ky = k parallel to the ZX-plane. The locus z=7z = 7 is therefore a plane, not a line.

Intercept form

xa+yb+zc=1\frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1

Worked example

Find the equation of the plane that cuts intercepts of 2, 3 and 4 on the x-, y- and z-axes respectively.
  1. Intercept form: x2+y3+z4=1\frac{x}{2} + \frac{y}{3} + \frac{z}{4} = 1.
  2. Multiply through by 12: 6x+4y+3z=126x + 4y + 3z = 12.
Answer:6x+4y+3z=126x + 4y + 3z = 12.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 23D GeometryEASY
What is the equation of the plane which cuts an intercept 5 units on the z-axis and is parallel to xy-plane?

[Q65 · Apr · 2020]

Concept 3 of 6

Plane through three points

Intuition

Three non-collinear points fix a plane. Build two edge vectors from one point, take their cross product to get the normal, then use point-normal form. (The determinant formula packages the same computation.)

Definition

For points A,B,CA, B, C: form AB\overrightarrow{AB} and AC\overrightarrow{AC}; the normal is n=AB×AC\vec n = \overrightarrow{AB} \times \overrightarrow{AC}; then write n(rA)=0\vec n \cdot (\vec r - \vec A) = 0. Equivalently, the plane is the determinant equation below.

Determinant form through three points

xx1yy1zz1x2x1y2y1z2z1x3x1y3y1z3z1=0\begin{vmatrix} x-x_1 & y-y_1 & z-z_1 \\ x_2-x_1 & y_2-y_1 & z_2-z_1 \\ x_3-x_1 & y_3-y_1 & z_3-z_1 \end{vmatrix} = 0

Worked example

Find the equation of the plane through A(1,1,0)A(1,1,0), B(2,0,1)B(2,0,1) and C(0,1,2)C(0,1,2).
  1. Form two edge vectors: AB=BA=1,1,1\overrightarrow{AB} = B - A = \langle 1, -1, 1\rangle and AC=CA=1,0,2\overrightarrow{AC} = C - A = \langle -1, 0, 2\rangle.
  2. The normal is their cross product: n=AB×AC=(1)(2)(1)(0), (1)(1)(1)(2), (1)(0)(1)(1)=2,3,1\vec n = \overrightarrow{AB} \times \overrightarrow{AC} = \langle (-1)(2)-(1)(0),\ (1)(-1)-(1)(2),\ (1)(0)-(-1)(-1)\rangle = \langle -2, -3, -1\rangle.
  3. Point-normal form through AA: 2(x1)3(y1)1(z0)=0-2(x-1) - 3(y-1) - 1(z-0) = 0.
  4. Simplify: 2x+3y+z=52x + 3y + z = 5. (Check: AA gives 2+3+0=52+3+0=5 ✓.)
Answer:2x+3y+z=52x + 3y + z = 5.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 33D GeometryHARD
What is the equation of the plane through (-2,6,-6), (-3,10,-9) and (-5,0,-6)?

[Q59 · Apr · 2018]

Concept 4 of 6

Distance from a point and the foot of the perpendicular

Intuition

The perpendicular distance from a point to a plane plugs the point into ax+by+czdax+by+cz-d and divides by the normal's length. For two PARALLEL planes, make the normals identical and the distance is just the gap in the constants over that same length. The foot of the perpendicular is reached by stepping from the point along the unit normal.

Definition

Distance from (x1,y1,z1)(x_1,y_1,z_1) to ax+by+cz+d=0ax+by+cz+d=0 is the formula below. For parallel planes ax+by+cz+d1=0ax+by+cz+d_1 = 0 and ax+by+cz+d2=0ax+by+cz+d_2 = 0 (SAME coefficients), the distance is d1d2a2+b2+c2\frac{|d_1-d_2|}{\sqrt{a^2+b^2+c^2}} — scale one plane first so the normals match.

Distance from a point to a plane

distance=ax1+by1+cz1+da2+b2+c2\text{distance} = \frac{|a x_1 + b y_1 + c z_1 + d|}{\sqrt{a^2 + b^2 + c^2}}

Diagram · plane, normal & distance from origin (drag to rotate)

n⃗ON

Shortest path from O to the plane runs along the normal to the foot N; its length is |d| / √(a²+b²+c²).

Worked example

Find the distance of the point (2,3,4)(2, 3, 4) from the plane 3x6y+2z+11=03x - 6y + 2z + 11 = 0.
  1. Plug into ax1+by1+cz1+d|ax_1+by_1+cz_1+d|: 3(2)6(3)+2(4)+11=618+8+11=7=7|3(2) - 6(3) + 2(4) + 11| = |6 - 18 + 8 + 11| = |7| = 7.
  2. Normal length: 9+36+4=49=7\sqrt{9 + 36 + 4} = \sqrt{49} = 7.
  3. Distance =77=1= \tfrac{7}{7} = 1.
Answer:11 unit.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 43D GeometryMODERATE
The distance between the parallel planes 4x2y+4z+9=04x-2y+4z+9=0 and 8x4y+8z+21=08x-4y+8z+21=0 is

[Q64 · Apr · 2019]

Scale parallel planes to a common normal BEFORE subtracting constants

4x2y+4z+9=04x-2y+4z+9=0 and 8x4y+8z+21=08x-4y+8z+21=0 look like they differ by 12 in the constant — but the normals differ by a factor of 2. Halve the second plane first; only then is d1d2/n|d_1-d_2|/|n| valid.

Always divide by a2+b2+c2\sqrt{a^2+b^2+c^2} — the numerator alone is NOT the distance

The distance is ax1+by1+cz1+da2+b2+c2\dfrac{|ax_1+by_1+cz_1+d|}{\sqrt{a^2+b^2+c^2}}. Plugging the point into ax1+by1+cz1+d|ax_1+by_1+cz_1+d| and stopping there forgets the normalisation by the normal's length — it only equals the distance when a2+b2+c2=1\sqrt{a^2+b^2+c^2}=1. For (1,2,2)(1,2,2) and 2x+y+2z+5=02x+y+2z+5=0: numerator =13=13, but the distance is 13/313/3, not 1313.

Concept 5 of 6

Angle between two planes

Intuition

The angle between two planes is the angle between their normals — same dot-product formula as two lines, applied to a1,b1,c1\langle a_1,b_1,c_1\rangle and a2,b2,c2\langle a_2,b_2,c_2\rangle. Perpendicular planes have perpendicular normals; parallel planes have proportional normals.

Definition

For planes with normals n1,n2\vec n_1, \vec n_2, the angle θ\theta between them satisfies cosθ=n1n2n1n2\cos\theta = \frac{|\vec n_1 \cdot \vec n_2|}{|\vec n_1||\vec n_2|}. The planes are perpendicular iff n1n2=0\vec n_1 \cdot \vec n_2 = 0 and parallel iff the normals are proportional.

Angle between planes (via normals)

cosθ=a1a2+b1b2+c1c2a12+b12+c12a22+b22+c22\cos\theta = \frac{|a_1 a_2 + b_1 b_2 + c_1 c_2|}{\sqrt{a_1^2+b_1^2+c_1^2}\,\sqrt{a_2^2+b_2^2+c_2^2}}

Worked example

Find the angle between the planes 2xy+z=12x - y + z = 1 and x+y+2z=3x + y + 2z = 3.
  1. Normals: 2,1,1\langle 2,-1,1\rangle and 1,1,2\langle 1,1,2\rangle.
  2. Dot: 21+2=32 - 1 + 2 = 3. Magnitudes: 6\sqrt6 and 6\sqrt6.
  3. cosθ=366=36=12\cos\theta = \dfrac{3}{\sqrt6 \cdot \sqrt6} = \dfrac{3}{6} = \tfrac12.
  4. So θ=60°=π3\theta = 60° = \tfrac{\pi}{3}.
Answer:π3\tfrac{\pi}{3} (60°).
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 53D GeometryMODERATE
Consider the following statements: 1. The angle between the planes 2xy+z=12x-y+z=1 and x+y+2z=3x+y+2z=3 is π3\frac{\pi}{3}. 2. The distance between the planes 6x3y+6z+2=06x-3y+6z+2=0 and 2xy+2z+4=02x-y+2z+4=0 is 109\frac{10}{9}. Which of the above statements is/are correct?

[Q59 · Sep · 2018]

Concept 6 of 6

Plane through the line of intersection of two planes

Intuition

Every plane containing the line where P1=0P_1 = 0 and P2=0P_2 = 0 meet can be written as P1+λP2=0P_1 + \lambda P_2 = 0 for some λ\lambda. Pick λ\lambda to satisfy one extra condition — passing through a point, or being perpendicular to a third plane — and you're done.

Definition

The family (pencil) of planes through the intersection of P1:a1x+b1y+c1z+d1=0P_1: a_1x+b_1y+c_1z+d_1 = 0 and P2:a2x+b2y+c2z+d2=0P_2: a_2x+b_2y+c_2z+d_2 = 0 is P1+λP2=0P_1 + \lambda P_2 = 0. Determine λ\lambda from the extra constraint (point on the plane, or perpendicularity to a given plane via the normal dot product). The direction of the line of intersection itself is n1×n2\vec{n_1} \times \vec{n_2} — perpendicular to both normals.

Pencil of planes

P1+λP2=0P_1 + \lambda P_2 = 0

Worked example

Find the plane through the intersection of x+y+z=3x + y + z = 3 and 2xy+z=42x - y + z = 4 that passes through (3,1,1)(3, 1, 1).
  1. Family: (x+y+z3)+λ(2xy+z4)=0(x+y+z-3) + \lambda(2x-y+z-4) = 0.
  2. Substitute (3,1,1)(3,1,1): (3+1+13)+λ(61+14)=02+2λ=0(3+1+1-3) + \lambda(6-1+1-4) = 0 \Rightarrow 2 + 2\lambda = 0.
  3. λ=1\lambda = -1.
  4. Plug back: (x+y+z3)(2xy+z4)=x+2y+1=0(x+y+z-3) - (2x-y+z-4) = -x + 2y + 1 = 0, i.e. x2y=1x - 2y = 1.
Answer:x2y=1x - 2y = 1.
Practice this conceptself-check · 5 quick reps

From the bank · past-year question

Example 63D GeometryHARD
The equation of the plane passing through the intersection of the planes 2x+y+2z=92x+y+2z=9, 4x5y4z=14x-5y-4z=1 and the point (3,2,1)(3,2,1) is

[Q63 · Apr · 2019]

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (6)

  • Equation of a plane and its normal

    Point-normal form

    a(xx0)+b(yy0)+c(zz0)=0a(x - x_0) + b(y - y_0) + c(z - z_0) = 0
  • Intercept form and special planes

    Intercept form

    xa+yb+zc=1\frac{x}{a} + \frac{y}{b} + \frac{z}{c} = 1
  • Plane through three points

    Determinant form through three points

    xx1yy1zz1x2x1y2y1z2z1x3x1y3y1z3z1=0\begin{vmatrix} x-x_1 & y-y_1 & z-z_1 \\ x_2-x_1 & y_2-y_1 & z_2-z_1 \\ x_3-x_1 & y_3-y_1 & z_3-z_1 \end{vmatrix} = 0
  • Distance from a point and the foot of the perpendicular

    Distance from a point to a plane

    distance=ax1+by1+cz1+da2+b2+c2\text{distance} = \frac{|a x_1 + b y_1 + c z_1 + d|}{\sqrt{a^2 + b^2 + c^2}}
  • Angle between two planes

    Angle between planes (via normals)

    cosθ=a1a2+b1b2+c1c2a12+b12+c12a22+b22+c22\cos\theta = \frac{|a_1 a_2 + b_1 b_2 + c_1 c_2|}{\sqrt{a_1^2+b_1^2+c_1^2}\,\sqrt{a_2^2+b_2^2+c_2^2}}
  • Plane through the line of intersection of two planes

    Pencil of planes

    P1+λP2=0P_1 + \lambda P_2 = 0

Watch out for (2)

Drill every past-year question on this subtopic

14 questions from the bank — paginated, with cart and Word-export support.