Lines and Planes in Space
Core Titles
Key headlines and terms for quick recall- Line vector form
- Line parametric form
- Line symmetric form
- Plane vector form
- Plane Cartesian
- Intersection of two planes is a line (or empty)
Basic Idea
What it is, why it matters, how it worksLine in space
A line is determined by a point on it and a direction vector .
Vector form
Parametric form
Symmetric form (when all non-zero)
Line through two points
Direction = . So .
Plane in space
Determined by a point and a normal vector .
Vector form
Cartesian form
Plane through three non-collinear points
Take , then use point-normal form.
Intersections
- Two planes with non-parallel normals → a line.
- Line and plane: substitute parametric line into plane equation, solve for .
Why this matters in Data Science
Lines/planes are the geometric backbone of classification (decision boundary), regression (best-fit plane), and dimensionality reduction.
Mind Map
Visual structure of the conceptLINES & PLANES IN SPACE
├── LINE
│ ├── Vector: r = r₀ + td
│ ├── Parametric: (x₀+at, y₀+bt, z₀+ct)
│ ├── Symmetric: (x−x₀)/a = (y−y₀)/b = (z−z₀)/c
│ └── Through A, B: d = B − A
└── PLANE
├── Vector: n·(r − r₀) = 0
├── Cartesian: ax + by + cz = d
├── Normal vector n
└── Through 3 points: n = (B−A) × (C−A)
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. Write the vector equation of a line. , where is a point on the line and its direction.
Q2. Write the equation of a plane in vector form. .
Q3. Find the equation of the line through and . Direction . Equation: .
Q4. What is the normal to the plane ? .
Part B (20 marks)
Q. Derive the equation of a line and a plane in space. Find the equation of the plane passing through , , , and the equation of the line through the origin perpendicular to this plane.
Equation of a line. Given a point and direction , every point on the line is for some scalar . Hence vector form ; in components, parametric equations.
Equation of a plane. Given point on the plane and normal , any point on the plane satisfies , i.e., .
Plane through .
Step 1 — Two edge vectors. .
Step 2 — Normal via cross product. . Simplify: .
Step 3 — Cartesian form. Using point : .
Line through origin perpendicular to this plane. Direction = normal , passes through origin: Parametric: . Symmetric: .