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

Introduction to Three-Dimensional Geometry

While chapter-09-straight-lines and chapter-10-conic-sections exist in two dimensions, the real world is three-dimensional.

Feynman Lens

Start with the simplest version: this lesson is about Introduction to 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 chapter-09-straight-lines and chapter-10-conic-sections exist in two dimensions, the real world is three-dimensional. This chapter extends coordinate geometry to three dimensions, describing points, lines, and planes in space. Three-dimensional geometry is essential for physics (motion in space), engineering (design and construction), computer graphics (3D modeling), and advanced calculus. By mastering the basics of 3D coordinates, direction ratios, and distance formulas, you build the foundation for multivariable calculus and spatial reasoning necessary across all scientific and technical fields.

The Three-Dimensional Coordinate System

Just as the 2D plane uses x and y axes, 3D space uses x, y, and z axes—three mutually perpendicular lines forming an origin. Every point in 3D space is identified by an ordered triple (x, y, z).

Imagine a corner of a room: the edges meeting at that corner are like the three axes. The origin is that corner. A point in the room is described by how far along each direction you are from the origin.

The three coordinate planes divide space:

These eight regions are called octants (analogous to quadrants in 2D).

Distance and Midpoint in 3D

Distance Formula (from (x₁, y₁, z₁) to (x₂, y₂, z₂)):

d = √[(x₂ - x₁)² + (y₂ - y₁)² + (z₂ - z₁)²]

This is the 3D extension of the 2D distance formula, adding a z-component.

Midpoint Formula:

M = ((x₁ + x₂)/2, (y₁ + y₂)/2, (z₁ + z₂)/2)

Direction Ratios and Direction Cosines

A line's direction in 3D is described by direction ratios or direction cosines.

Direction Ratios (a, b, c): Three numbers proportional to the x, y, z components of the line's direction. For example, a line from (0, 0, 0) to (2, 4, 1) has direction ratios (2, 4, 1) or (1, 2, 0.5) or any multiple.

Direction Cosines (l, m, n): The cosines of angles the line makes with the three coordinate axes. They satisfy:

l² + m² + n² = 1

These are unique once we choose a direction along the line. If the direction ratios are (a, b, c):

l = a/√(a² + b² + c²), m = b/√(a² + b² + c²), n = c/√(a² + b² + c²)

Equations of a Line in 3D

Vector Form: The line through point (x₀, y₀, z₀) with direction ratios (a, b, c) can be written:

(x, y, z) = (x₀, y₀, z₀) + t(a, b, c)

where t is a parameter (t can be any real number).

Symmetric Form:

(x - x₀)/a = (y - y₀)/b = (z - z₀)/c

Parametric Form:

Equations of a Plane

A plane is determined by a point and a normal vector (perpendicular to the plane).

Vector Form: If n = (A, B, C) is the normal and (x₀, y₀, z₀) is a point on the plane:

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

General Form:

Ax + By + Cz + D = 0

The normal vector is (A, B, C).

Intercept Form (if the plane intersects all three axes at non-zero points a, b, c):

x/a + y/b + z/c = 1

Angle Between Lines and Planes

Angle between two lines with direction ratios (a₁, b₁, c₁) and (a₂, b₂, c₂):

cos θ = |a₁a₂ + b₁b₂ + c₁c₂| / [√(a₁² + b₁² + c₁²) × √(a₂² + b₂² + c₂²)]

This is the dot product formula, generalizing 2D slope relationships.

Angle between line and plane: If the line has direction ratios (a, b, c) and the plane has normal (A, B, C):

sin θ = |aA + bB + cC| / [√(a² + b² + c²) × √(A² + B² + C²)]

Distance Formulas

Distance from point (x₀, y₀, z₀) to plane Ax + By + Cz + D = 0:

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

Distance between two skew lines (lines that don't intersect and aren't parallel) requires more complex formulas involving cross products.

Real-World Context

Aircraft navigation uses 3D coordinates. Architecture and construction design buildings in 3D space. Computer graphics render 3D models on 2D screens using these coordinate transformations. Astronomy describes celestial objects using 3D coordinates. Robotics uses 3D geometry to plan motion paths.

Key Formulas

Socratic Questions

  1. When moving from 2D to 3D coordinate geometry, what new features emerge? Why can't all the 2D concepts transfer directly—what breaks or becomes more complex?
  1. A line in 3D has direction ratios (a, b, c). Why do we normalize these to direction cosines where l² + m² + n² = 1? What does this normalization represent geometrically?
  1. Two lines in 2D either intersect or are parallel. In 3D, a third possibility exists: skew lines (non-intersecting but not parallel). Why is this possible in 3D? Can you visualize an example?
  1. The equation of a plane in 3D is Ax + By + Cz + D = 0, similar to the 2D line equation Ax + By + C = 0. What is the significance of the normal vector (A, B, C)? Why does it define the plane's orientation?
  1. If you have a line and a plane in 3D, how many points of intersection are possible? What determines each case? How does the angle between the line and the plane's normal determine the outcome?

Term / Concept
Coordinates of a point in space
tap to flip
An ordered triple (x, y, z) where x, y, z are perpendicular distances from the YZ, ZX, and XY planes respectively.
Term / Concept
Coordinate planes
tap to flip
The XY-plane (z = 0), YZ-plane (x = 0), and ZX-plane (y = 0). They divide space into eight octants.
Term / Concept
Octant
tap to flip
One of the eight regions into which the three coordinate planes divide 3D space, determined by the signs of x, y, z. Octant I has all positive coordinates.
Term / Concept
Distance formula in 3D
tap to flip
PQ = √[(x₂ − x₁)² + (y₂ − y₁)² + (z₂ − z₁)²], the natural extension of the 2D Pythagorean distance formula.
Term / Concept
Distance from origin
tap to flip
For a point Q(x, y, z), OQ = √(x² + y² + z²).
Term / Concept
Midpoint formula in 3D
tap to flip
The midpoint of P(x₁, y₁, z₁) and Q(x₂, y₂, z₂) is ((x₁ + x₂)/2, (y₁ + y₂)/2, (z₁ + z₂)/2).
Term / Concept
Centroid of a triangle
tap to flip
For vertices A, B, C the centroid is ((x₁ + x₂ + x₃)/3, (y₁ + y₂ + y₃)/3, (z₁ + z₂ + z₃)/3) — the average of the three vertices.
Term / Concept
Collinear points
tap to flip
Three points P, Q, R are collinear when one of the distances equals the sum of the other two, e.g. PQ + QR = PR.
Term / Concept
Direction cosines
tap to flip
l, m, n are cosines of the angles a line makes with the x, y, z axes. They always satisfy l² + m² + n² = 1.
Term / Concept
Point on the x-axis
tap to flip
Any point on the x-axis has the form (x, 0, 0); on the y-axis (0, y, 0); on the z-axis (0, 0, z).
The distance between P(1, −3, 4) and Q(−4, 1, 2) is:
  • A √29
  • B √41
  • C 3√5
  • D 9
In which octant does the point (−3, 1, 2) lie?
  • A Octant I
  • B Octant II
  • C Octant III
  • D Octant VI
A point lies on the y-axis. Its coordinates are of the form:
  • A (0, y, 0)
  • B (y, 0, 0)
  • C (0, 0, y)
  • D (y, y, y)
The centroid of the triangle with vertices A(3, −5, 7), B(−1, 7, −6) and C(x, y, z) is (1, 1, 1). Then C is:
  • A (3, −1, 0)
  • B (−1, −1, 2)
  • C (2, 1, 1)
  • D (1, 1, 2)
The points P(−2, 3, 5), Q(1, 2, 3) and R(7, 0, −1) are:
  • A Vertices of a right triangle
  • B Vertices of an equilateral triangle
  • C Collinear
  • D Coplanar but non-collinear