Back to ShikshaPal ExplainerClass 12 / Math
ShikshaPal
Class 12 · Math

Three-Dimensional Geometry

While Class 11 introduced 3D geometry in Cartesian coordinates, this chapter leverages chapter-10-vector-algebra to make 3D geometry elegant and powerful.

Feynman Lens

Start with the simplest version: this lesson is about Three-Dimensional Geometry. If you can explain the core idea to a friend using everyday language, examples, and one clear reason why it matters, you have moved from memorising to understanding.

While Class 11 introduced 3D geometry in Cartesian coordinates, this chapter leverages chapter-10-vector-algebra to make 3D geometry elegant and powerful. Rather than memorizing formulas, we use vectors to describe lines and planes as dynamic objects. A line becomes a starting point plus a direction; a plane becomes a point with a normal vector. This vector approach unifies concepts, simplifies calculations, and extends naturally to higher dimensions. Understanding 3D geometry is essential for physics (motion, fields), engineering (design, optimization), and advanced mathematics.

Direction Cosines and Direction Ratios

For a line in 3D, direction ratios (a, b, c) indicate the direction. They're proportional to components of a direction vector.

Direction cosines are the cosines of angles the line makes with coordinate axes:

cos(α) = a/√(a² + b² + c²)
cos(β) = b/√(a² + b² + c²)
cos(γ) = c/√(a² + b² + c²)

Important property: cos²(α) + cos²(β) + cos²(γ) = 1 (sum of squares of direction cosines equals 1)

Building from Class 11: Class 11 introduced these concepts; now we use them to describe lines and planes vectorially.

Equations of a Line in 3D

A line passing through point P(x₀, y₀, z₀) with direction ratios (a, b, c) can be expressed:

Vector form: r = r₀ + td, where r₀ = (x₀, y₀, z₀), d = (a, b, c), and t is a parameter

Parametric form:

x = x₀ + at
y = y₀ + bt
z = z₀ + ct

Symmetric form: (x - x₀)/a = (y - y₀)/b = (z - z₀)/c (if a, b, c ≠ 0)

Example: Line through (1, 2, 3) with direction (2, -1, 4):

Equations of a Plane in 3D

A plane is determined by a point P(x₀, y₀, z₀) and a normal vector n = (A, B, C) perpendicular to the plane.

Vector form: n · (r - r₀) = 0

Cartesian form: A(x - x₀) + B(y - y₀) + C(z - z₀) = 0

General form: Ax + By + Cz + D = 0 (expanding and simplifying)

Normal vector: From the equation Ax + By + Cz + D = 0, the normal is n = (A, B, C)

Example: Plane through (1, 2, 3) with normal (2, -1, 4):

Angle Between Two Lines

For lines with direction vectors d₁ = (a₁, b₁, c₁) and d₂ = (a₂, b₂, c₂):

cos(θ) = |**d₁** · **d₂**| / (||**d₁**|| ||**d₂**||)

(Use absolute value to get acute angle)

Perpendicularity: Lines are perpendicular if d₁ · d₂ = 0

Parallelism: Lines are parallel if d₁ and d₂ are proportional (same direction)

Angle Between Two Planes

For planes with normal vectors n₁ = (A₁, B₁, C₁) and n₂ = (A₂, B₂, C₂):

cos(θ) = |**n₁** · **n₂**| / (||**n₁**|| ||**n₂**||)

Perpendicularity: Planes are perpendicular if n₁ · n₂ = 0

Parallelism: Planes are parallel if n₁ and n₂ are proportional

Distance Calculations

Distance from point P to line (through Q with direction d):

Distance = ||(**QP**) × **d**|| / ||**d**||

(Use cross product to find perpendicular distance)

Distance from point P to plane Ax + By + Cz + D = 0:

Distance = |Ax₀ + By₀ + Cz₀ + D| / √(A² + B² + C²)

(Numerator is plane equation evaluated at P; denominator normalizes the normal vector)

Distance between two parallel planes A₁x + B₁y + C₁z + D₁ = 0 and A₂x + B₂y + C₂z + D₂ = 0 (with proportional normals):

Pick any point on the first plane, use point-to-plane distance formula.

Line-Plane Intersection

A line r = r₀ + td intersects plane Ax + By + Cz + D = 0 when:

A(x₀ + ta) + B(y₀ + tb) + C(z₀ + tc) + D = 0

Solve for t; if solution exists, find intersection point by substituting t back.

Special cases:

Connections to Other Topics

Socratic Questions

  1. Explain why a line in 3D requires both a point and a direction vector, while a line in 2D can be specified by a single equation like y = mx + b. What extra information does the direction vector provide in 3D?
  1. For a plane with equation Ax + By + Cz + D = 0, the normal vector is n = (A, B, C). Why must the normal be perpendicular to the plane? How does this relate to the dot product of the normal with any vector lying in the plane?
  1. Two planes are parallel if their normals are proportional. Two planes are perpendicular if their normals are perpendicular (dot product = 0). Explain why these conditions make geometric sense.
  1. To find the distance from a point P to a plane, we use the formula |Ax₀ + By₀ + Cz₀ + D| / √(A² + B² + C²). Why is the denominator √(A² + B² + C²) present? What does it represent, and why is the division necessary?
  1. A line is given parametrically as r = (1, 2, 3) + t(2, -1, 4). How would you find where this line intersects the plane 2x + y - z + 5 = 0? What would it mean geometrically if you found no solution?

Term / Concept
Direction Cosines
tap to flip
Cosines of angles a line makes with x, y, z axes; satisfy cos²α + cos²β + cos²γ = 1.
Term / Concept
Direction Ratios
tap to flip
Any triple proportional to direction cosines, e.g., (a, b, c). Direction cosines = (a, b, c)/√(a² + b² + c²).
Term / Concept
Vector Equation of a Line
tap to flip
r = a + λ b: point a on the line, direction vector b, parameter λ ∈ ℝ.
Term / Concept
Symmetric Form of a Line
tap to flip
(x − x₀)/a = (y − y₀)/b = (z − z₀)/c, with direction ratios a, b, c.
Term / Concept
Equation of a Plane (point–normal)
tap to flip
n · (r − r₀) = 0, or A(x − x₀) + B(y − y₀) + C(z − z₀) = 0 with normal n = (A, B, C).
Term / Concept
Angle Between Two Lines
tap to flip
cos θ = |b₁ · b₂| / (|b₁||b₂|). Perpendicular ⇔ b₁ · b₂ = 0.
Term / Concept
Angle Between Two Planes
tap to flip
cos θ = |n₁ · n₂| / (|n₁||n₂|). Parallel ⇔ n₁ ∥ n₂; perpendicular ⇔ n₁ · n₂ = 0.
Term / Concept
Distance from Point to Plane
tap to flip
d = |Ax₀ + By₀ + Cz₀ + D| / √(A² + B² + C²) for plane Ax + By + Cz + D = 0.
Term / Concept
Skew Lines
tap to flip
Lines that neither intersect nor are parallel. Shortest distance d = |(a₂ − a₁) · (b₁ × b₂)| / |b₁ × b₂|.
Term / Concept
Plane Through Three Points
tap to flip
Normal n = (B − A) × (C − A); equation: n · (r − A) = 0.
If the direction ratios of a line are (1, 2, 2), the direction cosines are
  • A (1, 2, 2)
  • B (1/3, 2/3, 2/3)
  • C (1/9, 2/9, 2/9)
  • D (1/√5, 2/√5, 2/√5)
The distance from point (1, 1, 1) to the plane 2x − y + 2z − 6 = 0 is
  • A 1
  • B 3
  • C 6
  • D 2
Two lines with direction vectors (1, 2, 3) and (2, −1, 0) are
  • A Parallel
  • B Coincident
  • C Perpendicular
  • D Neither parallel nor perpendicular
The plane through (0, 0, 0) with normal (1, 2, 3) has equation
  • A x + y + z = 0
  • B x + 2y + 3z = 6
  • C 3x + 2y + z = 0
  • D x + 2y + 3z = 0
For the line (x − 1)/2 = (y + 1)/(−3) = (z − 4)/1, the direction ratios are
  • A (1, −1, 4)
  • B (2, −3, 1)
  • C (−2, 3, −1)
  • D (1, 1, 1)