Vectors in 3D — Lines, Distances, Intersections, The Whole Mess But Clearer

Vectors in 3D

🔷 Vectors in 3D — Lines, Distances, Intersections, The Whole Mess But Clearer

Alright.
3D vectors. This is the chapter where a few quiet groans appear because 2D felt flat and comfortable, then suddenly there’s an extra axis like someone decided maths needed another dimension of stress. It doesn’t — honestly — it’s the same game with one more hallway to walk down.

I’m going to go slowly then fast then pause then ramble.
Because that’s how this actually lands in class.

And yes — every single year this topic shows up in Pure.
Not optional. Doesn’t vanish. It’s tangibly mark-rich if you stay calm.

Also — if you did Parametric Equations — you’re basically warmed up already.

 🔙 Previous topic:

Last time we were playing with parametric derivatives and tangents — and weirdly, that thinking slips straight into 3D vectors once you see the pattern.

🟡 First, why 3D spooks even smart students

Let’s be truthful — pictures.
The drawings go diagonal, hovering, twisted like coat hangers someone sat on.

And then you meet words like:

  • skew
    direction vector
    perpendicular distance
    intersection parameter
    minimal separation

None of these exist in 2D GCSE comfort land, so the brain hesitates.

But the maths behind them is not worse than (y = mx + c).
It’s really just:

A line is a starting point and a direction vector.
Walk along it using a parameter.

The rest is geometry + patience.

And if any of this already feels like a jump from 2D comfort into space, trust me — building your A Level Maths understanding early makes 3D vectors far less chaotic.

🟣 Ground example to hold onto (we’ll keep coming back to it)

We have a line. For example,
\mathbf{r} = (1,-2,3) + \lambda(2,1,-1).

And a point:
A(5,0,4).

The standard exam asks: How far is A from this line?
Shortest distance — which means perpendicular, not just any difference.

We’ll solve it later — not rushing — letting ideas warm up.

🖍 Quick mental drawing (even if awful)

Picture:

  • a slanted arrow line in space

  • one dot floating to the side of it

  • a dropped perpendicular like a ladder pinned at one end

If your drawing looks like a broken tripod — you’re doing it right.
Diagrams here are thinking aids, never artwork.

I have never drawn a good cube in 10 years of teaching this.

🔵 What actually defines a line in 3D?

No paragraphs. Just the rule:

For example, the general form of a 3D line is
\mathbf{r} = \mathbf{a} + \lambda\mathbf{d}.

Where:
• The vector \mathbf{a} represents a point the line passes through.
• The vector \mathbf{d} is the direction vector guiding the line.
• The parameter \lambda is the real-number slider that moves you back and forth along it.

So the line isn’t mystical at all — it’s just “stand somewhere + walk with purpose.”
And if the direction vector has negatives or awkward numbers? Still completely fine.
Direction is direction. The arrow doesn’t need to look pretty.

🟢 Convert it into parametric coordinates (the unjamming move)

From our line, we can write:

For example, \mathbf{r} = (1,-2,3) + \lambda(2,1,-1)

This gives:

For example, x = 1 + 2\lambda,\quad y = -2 + \lambda,\quad z = 3 – \lambda.

This is where panic fades — suddenly it’s GCSE-readable.
People forget this one step unlocks almost every question.

This little rewrite into parametric form is the kind of thing that saves marks quietly — it’s basically built-in A Level Maths revision help, because once you see the structure, every later step becomes easier.

🟤 Test if the point is ON the line

Plug A(5,0,4) into those parametric forms:

For example, 1 + 2\lambda = 5 ;\Rightarrow; \lambda = 2

and

-2 + \lambda = 0 ;\Rightarrow; \lambda = 2.

So far so good — but then:

For example, 3 – \lambda = 4 ;\Rightarrow; \lambda = -1.

Two equations agree, one disagrees → point not on line.
Examiners love that mismatch reveal. Clean justification. No waffle needed.

🔺 Now the big target — shortest distance from point to line

Formal formula:

For example, the perpendicular distance from a point to a line is
\text{Distance} = \frac{\lVert(\mathbf{A}-\mathbf{a}) \times \mathbf{d}\rVert}{\lVert\mathbf{d}\rVert}.

But a formula isn’t understanding — the spoken version is better:

  • Take the vector from the line’s start point to the point.

  • Cross it with the direction vector to get the perpendicular “area-type” magnitude.

  • Divide by the size of the direction vector to turn that into a distance.

Let’s calculate it calmly.

Start of line:
For example, \mathbf{a} = (1, -2, 3).

Direction:
For example, \mathbf{d} = (2, 1, -1).

Point:
For example, \mathbf{A} = (5, 0, 4).

Subtract them:

For example, \mathbf{A} – \mathbf{a} = (4, 2, 1).

Cross product:

For example, (4, 2, 1) \times (2, 1, -1) = (-3,, 6,, 0).

Magnitude:

For example, \sqrt{9 + 36} = \sqrt{45}.

Direction size:

For example, \sqrt{2^2 + 1^2 + (-1)^2} = \sqrt{6}.

Distance:

For example, \frac{\sqrt{45}}{\sqrt{6}} = \sqrt{7.5}.

Job done.
You can leave the answer as \sqrt{7.5} unless the examiner insists on a neater exact form.

🔵 Angle between two lines (quick, one formula only)

Direction vectors:
For example, \mathbf{d_1} and \mathbf{d_2}.

Then the angle between the lines satisfies:
\cos\theta = \frac{\mathbf{d_1}\cdot\mathbf{d_2}}{\lVert \mathbf{d_1}\rVert ,\lVert \mathbf{d_2}\rVert}.

Dot product tells you “how similar” the directions are.
Cosine filters that similarity into an actual angle.
You don’t need three different versions — this one formula covers every case.

🟠 Distance between skew lines (the advanced bit but elegant)

If two lines don’t meet and aren’t parallel, a handy formula is:

For example, distance = \frac{|(b-a)\cdot(d_1\times d_2)|}{|d_1\times d_2|}.

Read it in human language: you link the starting points, project onto the direction that’s perpendicular to both lines, and see how big that component is.
If the cross product \mathbf{d_1}\times\mathbf{d_2} is zero, they’re parallel or the same line.

That entire formula is one sentence of meaning.

🧩 Micro-tricks that save marks instantly

  • Direction from two points? subtract them.
  • Don’t draw axes perfectly — sketch is enough.
  • If the last intersection equation fails → skew.
  • Dot = angle. Cross = perpendicular stuff.
  • Signs matter more than numbers here — slow down.
  • Elimination isn’t always needed. Sometimes parametric is cleaner.

This topic rewards patience over cleverness.

🐦 A 60-second example (new, short, realistic)

Line:
\mathbf{r} = (3,1,-1) + \mu(1,-2,4)

Point:
P(5,-3,3)

Distance?

Move vector:
\mathbf{P} – \mathbf{a} = (2,-4,4)

Cross with direction:
For example, latex \times (1,-2,4) = (-8,-4,0)[/latex]

Magnitude:
\lVert(-8,-4,0)\rVert = \sqrt{64 + 16 + 0} = \sqrt{80}

Direction size:
\lVert(1,-2,4)\rVert = \sqrt{1^2 + (-2)^2 + 4^2} = \sqrt{21}

Distance:
\frac{\sqrt{80}}{\sqrt{21}} = \sqrt{\frac{80}{21}}

You could rationalise it, but honestly it’s never required unless the exam explicitly says so.
If you can follow that flow, you’ve basically mastered the whole distance-to-line engine.

❗ Most common errors I see (honestly every year)

  • dropping minus signs 🡒 disaster silently
  • plugging point into r instead of parametrics
  • mixing μ & λ like identical twins
  • trying to visualise instead of compute
  • only checking 2 coordinates for membership
  • forgetting magnitude in cross distance
  • believing parallel means distance = 0 (no — only if same line)

Write these on a post-it. Stick to a laptop.

🌍 Where this matters in the real world (not theory)

Any drone following air corridors.
VR depth rendering.
Aircraft altitude separation.
GPS trilateration.
Autonomous vehicle LIDAR tracking.
Rocket navigation.
3D modelling engines calculating camera distance every single frame.

You’re literally learning how machines see space.

🚀 Next if you want this clearer & automatic in your mind

If these steps finally felt less like chaos — and you want dozens more examples walked through with annotation, hesitations, mistakes and fixes — the A Level Maths Revision Course with guided practice teaches 3D vectors without the cold textbook tone.
Proper human voice. Real diagrams. Slow logic.

👤Author Bio – S Mahandru

I’ve taught vectors for a decade and I still draw awful cubes.
But once students stop fighting the picture and listen to the algebra, this topic goes from nightmare to pleasant and logical. If you’ve read this far — you already know more than you did an hour ago.

 🧭 Next topic:

❓ Questions Students Always Ask

Should I draw everything?

 No — draw only to think, not to show art skill.
A single slanted line and dot clarifies 80% of problems.
If a sketch calms the brain, use it — if it stresses you out, ignore it.
Examiners do not score illustration quality.
Your algebra earns every mark.

 Compare direction vectors — if scalar multiples, parallel or same line.
If not, equate parametric coordinates and solve λ, μ.
If one coordinate fails → skew.
If all match → intersection.
No geometry intuition required — algebra tells the truth.

Dot → alignment (angles).
Cross → perpendicular & distance.
If you’re measuring closeness, separation or shortest path → cross.
If measuring similarity or direction agreement → dot.
Ask “am I checking the difference or alignment?” — the verb chooses the tool.