Skip to content
M
hscscience Ext 2 · Y12
0/100daily goal
0
0
0 due
0
L1 · 0 XP
KJ
Your weak spots
Insights load after your first practice round.
Module 14 · L07 of 12 ~40 min ⚡ +90 XP available

Intersection of Lines in 3D

In two dimensions, two distinct lines either intersect at exactly one point or are parallel. In three dimensions, a third possibility opens up: the lines may be skew — non-parallel and yet never meeting. This lesson teaches you to test two lines given in parametric form, solve the simultaneous system in two parameters $\lambda$ and $\mu$, and classify the relationship with confidence.

Today's hook — You're given two lines: $\mathbf{r}_1 = (1,0,2) + \lambda(2,1,-1)$ and $\mathbf{r}_2 = (0,1,3) + \mu(1,-1,2)$. Do they cross? Before reading on, set the components equal, solve any two of the three equations for $\lambda$ and $\mu$, then test the third. If it agrees — they meet. If not — they don't. Revisit your answer at the end.
0/5QUESTS
01
Recall — your gut answer first
+5 XP warm-up

Two lines in 2D either meet at a point or are parallel. List every possibility for two lines in 3D, and for each case describe how the parametric equations would behave when you try to solve them simultaneously.

auto-saved
02
The two moves for classifying two 3D lines
+5 XP to read

Two habits make every intersection question routine: first compare the direction vectors — if one is a scalar multiple of the other, the lines are parallel (and you only need to test a single point to know whether they coincide). If they aren't parallel, set the position vectors equal, solve any two component equations for $\lambda$ and $\mu$, then test the third. Consistency means intersection; contradiction means skew.

The direction-first then consistency reading: (1) extract direction vectors $\mathbf{d}_1, \mathbf{d}_2$, (2) check $\mathbf{d}_1 \parallel \mathbf{d}_2$, (3) if not parallel, solve simultaneously and test the third component.

$\mathbf{r}_1 = \mathbf{a} + \lambda \mathbf{d}_1$  ·  $\mathbf{r}_2 = \mathbf{c} + \mu \mathbf{d}_2$  ·  meet $\Leftrightarrow \mathbf{a} + \lambda \mathbf{d}_1 = \mathbf{c} + \mu \mathbf{d}_2$

Compare d₁, d₂ Solve 2 eqns Test 3rd eqn Intersect · Parallel · Skew
$\mathbf{a} + \lambda \mathbf{d}_1 = \mathbf{c} + \mu \mathbf{d}_2$
Use different parameters
Always use $\lambda$ for one line and $\mu$ for the other. Reusing the same letter forces a non-existent constraint and gives wrong answers.
Three equations, two unknowns
Solving the $x$ and $y$ components gives a candidate pair $(\lambda, \mu)$. Substituting into the $z$ equation is the actual intersection test — never skip it.
Skew means inconsistent
If the directions aren't parallel and the third component fails, the simultaneous system has no solution. That is exactly the definition of skew lines.
03
What you'll master
Know

Key facts

  • Three classifications: intersecting, parallel (including coincident), skew
  • Two lines are parallel iff $\mathbf{d}_1 = k\mathbf{d}_2$ for some scalar $k$
  • Skew lines exist only in $\mathbb{R}^3$ (or higher) — never in $\mathbb{R}^2$
  • NESA MEX-V1: vectors in three dimensions and lines
Understand

Concepts

  • Why two different parameters $\lambda, \mu$ are required
  • Why the third component equation is the consistency test
  • Why parallel and coincident must be distinguished by a point check
Can do

Skills

  • Set up and solve the simultaneous parametric system
  • Classify any pair of 3D lines as intersecting, parallel or skew
  • Find the point of intersection when one exists
04
Key terms
Parametric formA line written as $\mathbf{r} = \mathbf{a} + \lambda \mathbf{d}$, where $\mathbf{a}$ is a position vector to any point on the line and $\mathbf{d}$ is a direction vector. Each value of $\lambda$ produces one point.
Direction vectorThe vector $\mathbf{d}$ giving the orientation of a line. Two lines are parallel iff their direction vectors are scalar multiples.
Intersecting linesTwo lines that share at least one point. In 3D, this requires the simultaneous system in $\lambda, \mu$ to have a consistent solution.
Parallel linesDirection vectors are scalar multiples. Either no points in common (strictly parallel) or every point in common (coincident).
Coincident linesA special case of parallel: the two equations describe the same line. Test by checking whether a point on one lies on the other.
Skew linesLines in 3D that are not parallel and do not intersect. They lie in distinct planes and cannot coexist in 2D.
MEX-V1NESA outcome (Further Work with Vectors): uses vector methods to analyse lines in three-dimensional space, including intersection, parallelism and skewness.
05
The three cases — intersect, parallel, skew
core concept

Let $\ell_1: \mathbf{r}_1 = \mathbf{a} + \lambda \mathbf{d}_1$ and $\ell_2: \mathbf{r}_2 = \mathbf{c} + \mu \mathbf{d}_2$ be two lines in $\mathbb{R}^3$. The classification proceeds in two steps.

  1. Compare directions. If $\mathbf{d}_1 = k\mathbf{d}_2$ for some scalar $k$, the lines are parallel. Substitute $\mathbf{a}$ into $\ell_2$: if it satisfies $\ell_2$, the lines are coincident; otherwise they are strictly parallel (no intersection).
  2. If not parallel, solve simultaneously. Set $\mathbf{a} + \lambda \mathbf{d}_1 = \mathbf{c} + \mu \mathbf{d}_2$. Component-wise this gives three equations in two unknowns. Solve any two for $\lambda$ and $\mu$, then substitute into the third. If it holds — the lines intersect, and the point is found by substituting $\lambda$ into $\ell_1$ (or $\mu$ into $\ell_2$). If the third equation fails — the lines are skew.
Why the third equation matters. In 2D, two equations in two unknowns generically have a unique solution — intersection is automatic unless the lines are parallel. In 3D you have three equations but still only two unknowns, so the system is overdetermined. The third equation is the genuine geometric constraint.

Three cases: intersect (unique $\lambda, \mu$), parallel ($\mathbf{d}_1 \parallel \mathbf{d}_2$), skew (not parallel, no solution) · Parallel + point on both line $\Rightarrow$ coincident · Use different parameters $\lambda, \mu$ for the two lines · Three equations, two unknowns: solve two, test the third

Pause — copy the three classification cases (intersect, parallel/coincident, skew), the rule to use different parameters $\lambda,\mu$ for the two lines, and the strategy of 3 equations in 2 unknowns into your book.

Quick check: Two lines in $\mathbb{R}^3$ have non-parallel direction vectors, and the simultaneous parametric system gives no solution. The lines are:

06
Solving the simultaneous system
core concept

We just saw the three cases for two 3D lines: intersect (unique $\lambda,\mu$), parallel (directions proportional), skew (not parallel, no solution). That raises a question: how do we actually solve the simultaneous system to decide between intersection and skew? This card answers it → set position vectors equal for 3 equations in $\lambda,\mu$; solve any 2, substitute into the 3rd; if it holds → intersection, if not → skew.

Given $\mathbf{r}_1 = (a_1, a_2, a_3) + \lambda(p_1, p_2, p_3)$ and $\mathbf{r}_2 = (c_1, c_2, c_3) + \mu(q_1, q_2, q_3)$, equating components yields:

  • $a_1 + \lambda p_1 = c_1 + \mu q_1$   (x-equation)
  • $a_2 + \lambda p_2 = c_2 + \mu q_2$   (y-equation)
  • $a_3 + \lambda p_3 = c_3 + \mu q_3$   (z-equation)

Strategy: pick the two equations with the simplest coefficients, rearrange into a linear system, and solve for $\lambda$ and $\mu$ (elimination or substitution). Then substitute both values into the third equation:

$$\text{Intersect} \iff a_3 + \lambda p_3 = c_3 + \mu q_3 \quad \text{when } \lambda, \mu \text{ from x \& y eqns.}$$
Common mistake. Using the same parameter (say $\lambda$) for both lines forces the lines to be travelled "in step", which is a much stronger condition than meeting at a point. Always use distinct parameters.

Set position vectors equal $\to$ 3 component equations · Solve any 2 for $\lambda$ and $\mu$ $\to$ candidate solution · Substitute into the 3rd: if it holds, intersection; if it fails, skew · Point of intersection: substitute $\lambda$ back into $\mathbf{r}_1$

Pause — copy the solution procedure (equate, solve 2 equations, test the 3rd), the intersection-point recovery ($\lambda^*$ back into $\mathbf{r}_1$), and the skew conclusion (3rd equation fails) into your book.

Did you get this? True or false: if two non-parallel lines in $\mathbb{R}^3$ are written as $\mathbf{r}_1 = \mathbf{a} + \lambda \mathbf{d}_1$ and $\mathbf{r}_2 = \mathbf{c} + \mu \mathbf{d}_2$, we may set $\lambda = \mu$ when testing for intersection.

PROBLEM 1 · LINES INTERSECT

Show that the lines $\mathbf{r}_1 = (1,2,3) + \lambda(2,-1,1)$ and $\mathbf{r}_2 = (4,0,5) + \mu(1,1,-1)$ intersect, and find the point of intersection.

1
Direction vectors $(2,-1,1)$ and $(1,1,-1)$ are not scalar multiples, so the lines are not parallel. Set components equal:
x: $1 + 2\lambda = 4 + \mu$
y: $2 - \lambda = \mu$
z: $3 + \lambda = 5 - \mu$.
First rule out parallelism, then write the three component equations cleanly. Label them x, y, z so you can quote them later.
PROBLEM 2 · LINES ARE PARALLEL

Determine the relationship between $\mathbf{r}_1 = (1,0,-1) + \lambda(2,4,-2)$ and $\mathbf{r}_2 = (3,5,1) + \mu(1,2,-1)$. Are they coincident or strictly parallel?

1
Direction vectors: $(2,4,-2) = 2(1,2,-1)$. So $\mathbf{d}_1 \parallel \mathbf{d}_2$; the lines are parallel.
A direction-vector comparison short-circuits the simultaneous solve. If they are scalar multiples, jump straight to the coincidence test.
PROBLEM 3 · LINES ARE SKEW

Show that $\mathbf{r}_1 = (1,0,2) + \lambda(2,1,-1)$ and $\mathbf{r}_2 = (0,1,3) + \mu(1,-1,2)$ are skew.

1
Directions $(2,1,-1)$ and $(1,-1,2)$: not scalar multiples (the ratios $2:1$, $1:-1$ disagree). So the lines are not parallel.
Establish non-parallelism first — otherwise the "no intersection" conclusion would mean "strictly parallel", not skew.

Fill the gap: Two lines in 3D are skew if their direction vectors are and the simultaneous parametric system has .

Trap 01
Using the same parameter for both lines
Setting $\mathbf{r}_1(\lambda) = \mathbf{r}_2(\lambda)$ forces both lines to be at the same parameter value when they meet — a coincidence that geometry does not require. Always introduce $\mu$ for the second line.
Trap 02
Forgetting to test the third equation
Solving two component equations always produces some $(\lambda, \mu)$ — but that pair may be a phantom. The third equation is the geometric reality check. Without it you cannot distinguish intersecting from skew.
Trap 03
Calling parallel lines "skew"
Skew lines must be non-parallel. Two parallel lines that do not meet are strictly parallel, not skew. Always verify the direction vectors first.

Did you get this? True or false: two lines in $\mathbb{R}^3$ with direction vectors $(1, 2, 3)$ and $(2, 4, 6)$ are necessarily coincident.

Work mode · how are you completing this lesson?
1

Determine whether the lines $\mathbf{r}_1 = (2,1,0) + \lambda(1,1,1)$ and $\mathbf{r}_2 = (3,2,1) + \mu(2,-1,1)$ intersect. If so, give the point.

2

Show that $\mathbf{r}_1 = (0,1,2) + \lambda(3,-2,1)$ and $\mathbf{r}_2 = (1,0,3) + \mu(-6,4,-2)$ are parallel. Are they coincident?

3

Decide whether $\mathbf{r}_1 = (1,1,1) + \lambda(1,0,2)$ and $\mathbf{r}_2 = (0,2,0) + \mu(0,1,1)$ meet, are parallel or are skew.

4

Find the value of $k$ for which the lines $\mathbf{r}_1 = (1,2,k) + \lambda(1,1,1)$ and $\mathbf{r}_2 = (0,0,0) + \mu(2,1,3)$ intersect.

5

Two lines have the same direction vector but pass through different points. Explain why this is sufficient to know they cannot be skew.

Odd one out: Three of these describe situations where two lines in $\mathbb{R}^3$ have no point in common. Which one does NOT?

11
Revisit your thinking

Earlier you analysed $\mathbf{r}_1 = (1,0,2) + \lambda(2,1,-1)$ and $\mathbf{r}_2 = (0,1,3) + \mu(1,-1,2)$ — do they meet?

From WE3: the direction vectors are not parallel, but solving the x and y component equations gives $\lambda = 0, \mu = 1$, and the z equation fails ($2 \neq 5$). So the lines are skew. The lesson lives or dies on remembering the third component test — without it, you might wrongly declare the lines intersecting on the strength of two equations alone.

auto-saved
01
Multiple choice
+5 XP per correct · +25 XP all-correct

Pick your answer, then rate your confidence — that tells the system what to drill next. Each retry pulls a fresh mix from the bank.

02
Short answer
ApplyBand 32 marks

Q1. Show that $\mathbf{r}_1 = (1,0,0) + \lambda(1,2,-1)$ and $\mathbf{r}_2 = (2,2,-1) + \mu(0,1,-1)$ intersect, and give the point. (2 marks)

auto-saved
ApplyBand 43 marks

Q2. Determine whether $\mathbf{r}_1 = (1,1,0) + \lambda(2,0,1)$ and $\mathbf{r}_2 = (0,2,1) + \mu(1,1,0)$ intersect, are parallel, or are skew. Justify your classification. (3 marks)

auto-saved
AnalyseBand 53 marks

Q3. Find all values of the constant $a$ for which $\mathbf{r}_1 = (a,1,2) + \lambda(1,2,-1)$ and $\mathbf{r}_2 = (0,0,0) + \mu(2,1,1)$ intersect. (3 marks)

auto-saved
Comprehensive answers (click to reveal)

Activity answers:

1. Directions $(1,1,1), (2,-1,1)$ not parallel. x and z: $\lambda - 2\mu = 1$, $\lambda - \mu = 1 \Rightarrow \mu = 0, \lambda = 1$. y check: $1 + 1 = 2 - 0 = 2$ ✓. Point $(3, 2, 1)$.

2. $(-6, 4, -2) = -2(3, -2, 1)$, so parallel. Test $(0, 1, 2)$ on $\ell_2$: x gives $\mu = 1/6$, y gives $4/3 \neq 1$. Not coincident — strictly parallel.

3. Directions $(1, 0, 2), (0, 1, 1)$ not parallel. x: $\lambda = -1$; y: $\mu = -1$. z: $1 + 2(-1) = -1$ and $0 + (-1) = -1$ ✓. Intersect at $(0, 1, -1)$.

4. From x and y: $\mu = 1, \lambda = -1$. z: $k - 1 = 3 \Rightarrow k = 4$.

5. Skew requires non-parallel directions by definition. Equal direction vectors $\Rightarrow$ parallel; the lines are either coincident or strictly parallel — never skew.

Q1 (2 marks): x: $\lambda = 1$ [½]. y: $\mu = 0$ [½]. z check: $-1 = -1$ ✓; intersection at $(2, 2, -1)$ [1].

Q2 (3 marks): Directions not scalar multiples [1]. From y: $\mu = -1$; from x: $\lambda = -1$ [1]. z gives $-1 \neq 1$ — inconsistent; non-parallel + no solution $\Rightarrow$ skew [1].

Q3 (3 marks): y and z: $1 + 2\lambda = 2 - \lambda \Rightarrow \lambda = \tfrac{1}{3}, \mu = \tfrac{5}{3}$ [1]. x: $a + \tfrac{1}{3} = \tfrac{10}{3}$ [1]; $a = 3$ [1].

01
Boss battle · The Intersection Inspector
earn bronze · silver · gold

Five timed questions on classifying lines, solving the parametric system and identifying skew configurations. Beat the boss to bank a tier — gold (90% + speed), silver (75%), or bronze (50%). Replays welcome.

⚔ Enter the arena
02
Science Jump · platform challenge

Climb platforms by classifying line pairs quickly. Lighter alternative to the boss.

Mark lesson as complete

Tick when you've finished the practice and review.

🎓
Want help with Intersection of Lines in 3D?

Work through this topic 1-on-1 with an experienced HSC tutor.

Book a free session →