Logo
Published on

Ultimate Guide to Vector Intersections and Skew Lines

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Introduction

In 2D geometry, lines only have two options: they are parallel, or they cross each other at a single intersection point. However, in the 3D space of HSC Mathematics Extension 2, a third, mind-bending option exists: lines can be skew. Two airplanes flying at different altitudes in different directions will never crash, nor are they flying parallel. In this guide, we use vector algebra to systematically determine exactly how lines in 3D space interact.

Executive Summary

This guide covers the analysis of multiple vector lines:

  • Parallel Lines: Identifying if two lines travel in the same direction by comparing their direction vectors.
  • Collinear Points: Proving that three distinct points lie on the exact same straight line.
  • Intersecting Lines: Setting up simultaneous equations to find the exact (x,y,z)(x, y, z) coordinates where two lines cross.
  • Skew Lines: Proving that two lines are neither parallel nor intersecting.

What is this about?

When you are given two lines, L1:r1=a1+λb1L_1: \mathbf{r_1} = \mathbf{a_1} + \lambda \mathbf{b_1} and L2:r2=a2+μb2L_2: \mathbf{r_2} = \mathbf{a_2} + \mu \mathbf{b_2} (notice we must use different parameters, λ\lambda and μ\mu, for different lines!), you must act as a geometric detective.

First, you look at their direction vectors (b1\mathbf{b_1} and b2\mathbf{b_2}). If they are scalar multiples of each other, the lines are parallel. If they are not parallel, you try to find an intersection. You set the x,y,x, y, and zz components equal to each other to form three simultaneous equations. Since you only have two unknowns (λ\lambda and μ\mu), you only need the first two equations to find their values. You then substitute these values into the third equation. If the third equation works, the lines intersect. If the third equation creates a mathematical contradiction (like 5=75 = 7), the lines miss each other entirely and are skew.

Main Content

1. Parallel and Collinear

Parallel Lines: Two lines are parallel if their direction vectors are scalar multiples. If b1=kb2\mathbf{b_1} = k \mathbf{b_2} for some constant kk, the lines are parallel. You do not even need to look at the position vectors.

Collinear Points: Three points A,B,CA, B, C are collinear (on the same line) if the vector from AA to BB is parallel to the vector from AA to CC. You must prove two things:

  1. AB=kAC\vec{AB} = k \vec{AC} (This proves the lines ABAB and ACAC are parallel).
  2. They share a common point (Point AA). Therefore, they must be the same continuous line.

2. Finding Intersections

To find where L1L_1 and L2L_2 intersect:

  1. Expand both equations into their x,y,zx, y, z components.
  2. Equate the xx components: x1(λ)=x2(μ)x_1(\lambda) = x_2(\mu)
  3. Equate the yy components: y1(λ)=y2(μ)y_1(\lambda) = y_2(\mu)
  4. Equate the zz components: z1(λ)=z2(μ)z_1(\lambda) = z_2(\mu)
  5. Solve equations (2) and (3) simultaneously to find the values of λ\lambda and μ\mu.
  6. Substitute these values into equation (4) to check for consistency.
  7. If consistent, substitute λ\lambda back into L1L_1 (or μ\mu into L2L_2) to find the intersection coordinates.

3. Skew Lines

Skew lines only exist in 3D (or higher dimensions). They are lines that are not parallel, but also do not intersect. To prove two lines are skew:

  1. Prove they are not parallel (show b1kb2\mathbf{b_1} \neq k \mathbf{b_2}).
  2. Attempt to find an intersection using the simultaneous equations method.
  3. Show that substituting the found λ\lambda and μ\mu values into the third equation results in a contradiction (e.g. LHS \neq RHS).
  4. Conclude: "Since the lines are not parallel and do not intersect, they are skew."

Simple Worked Example

Question: Determine whether the following two lines intersect, are parallel, or are skew. If they intersect, find the coordinates of the point of intersection. L1:r=(121)+λ(211)L_1: \mathbf{r} = \begin{pmatrix} 1 \\ 2 \\ -1 \end{pmatrix} + \lambda \begin{pmatrix} 2 \\ -1 \\ 1 \end{pmatrix} L2:r=(213)+μ(112)L_2: \mathbf{r} = \begin{pmatrix} 2 \\ -1 \\ 3 \end{pmatrix} + \mu \begin{pmatrix} 1 \\ 1 \\ 2 \end{pmatrix}

Solution: Step 1: Check for parallel. Direction vectors are (211)\begin{pmatrix} 2 \\ -1 \\ 1 \end{pmatrix} and (112)\begin{pmatrix} 1 \\ 1 \\ 2 \end{pmatrix}. They are clearly not scalar multiples of each other. Therefore, they are not parallel.

Step 2: Set up simultaneous equations. Equate the x,y,zx, y, z components:

  1. 1+2λ=2+μ1 + 2\lambda = 2 + \mu     μ=2λ1\implies \mu = 2\lambda - 1
  2. 2λ=1+μ2 - \lambda = -1 + \mu
  3. 1+λ=3+2μ-1 + \lambda = 3 + 2\mu

Step 3: Solve for λ\lambda and μ\mu. Substitute equation (1) into equation (2): 2λ=1+(2λ1)2 - \lambda = -1 + (2\lambda - 1) 2λ=2λ22 - \lambda = 2\lambda - 2 4=3λ    λ=434 = 3\lambda \implies \lambda = \frac{4}{3}

Find μ\mu: μ=2(43)1=8333=53\mu = 2(\frac{4}{3}) - 1 = \frac{8}{3} - \frac{3}{3} = \frac{5}{3}

Step 4: Check consistency in the third equation. Substitute λ=43\lambda = \frac{4}{3} and μ=53\mu = \frac{5}{3} into equation (3): LHS = 1+λ=1+43=13-1 + \lambda = -1 + \frac{4}{3} = \frac{1}{3} RHS = 3+2μ=3+2(53)=93+103=1933 + 2\mu = 3 + 2(\frac{5}{3}) = \frac{9}{3} + \frac{10}{3} = \frac{19}{3}

Since LHS \neq RHS (13193\frac{1}{3} \neq \frac{19}{3}), the system of equations has no solution.

Final Answer: The lines are not parallel and do not intersect. Therefore, the lines are skew.

mini-FAQ page

Q: Do I have to use equations 1 and 2 to find the parameters? A: No, you can pick any two equations to solve simultaneously. It is usually best to pick the two equations that look the algebraically simplest. You then check the consistency using the remaining third equation.

Q: What if the question asks to find the distance between two skew lines? A: Finding the shortest distance between skew lines is generally outside the scope of the HSC Mathematics Extension 2 syllabus, unless the question leads you through a very specific geometrical construction using dot products.

Common mistakes to avoid

  • Using the same parameter for both lines: This is a fatal error! If you write r1=a1+λb1\mathbf{r_1} = \mathbf{a_1} + \lambda \mathbf{b_1} and r2=a2+λb2\mathbf{r_2} = \mathbf{a_2} + \lambda \mathbf{b_2}, you are forcing the lines to only intersect if they happen to reach the crossing point at the exact same "time" λ\lambda. Two airplanes can cross paths at different times! You MUST use different parameters (e.g. λ\lambda and μ\mu).
  • Stopping after finding λ\lambda and μ\mu: Many students solve the simultaneous equations and forget to substitute the values back into the vector equation to find the actual (x,y,z)(x,y,z) coordinate of the intersection.

Practice on Vu's Maths Hub

Proving lines are skew requires rigorous algebraic discipline.

Further Readings

Connect with me

Want to master 3D Vectors and guarantee top marks in HSC Mathematics Extension 2? Visit Vu's Maths Hub for in-depth booklets, rigorous worked solutions, and expert advice to help you ace your exams!