How can you find out if two lines expressed in their vector form intersect?

Let the lines be:

r1 = (a, b, c) + t(d, e, f)

r2 = (g, h, i) + s(j, k, l)

Since t and s above are variables and the rest of the letters are constants, the only way to change the point which the vector equations are referring to is by varying t and s. If the lines intersect, there must be some value of t and some value of s that results in r1 equalling r2. If there is no such point, the lines are skew (they do not intersect). The way to find the relevant values of t and s is simultaneously. Split up each equation above into 3 parts: x, y and z.

r1:    x = a + d * t    y = b + e * t    z = c + f * t

r2:    x = g + j * s    y = h + k * s    z = i + l * s

Therefore: a + d * t = g + j * s

    b + e * t = h + k * s

    c + f * t = i + l * s

Solve the first two equations simultaneously to find the values of t and s. Substitute them into the third equation. If a contradiction results, the lines are skew. If the third equation works with those values of t and s, the lines meet.

YI

Related Maths A Level answers

All answers ▸

Find the nature of the turning points of the graph given by the equation x^4 +(8/3)*x^3 -2x^2 -8x +177 (6 marks)


Differentiate 5x^3 + 4x^2 + 5x + 9


The line l1 has equation y = −2x + 3. The line l2 is perpendicular to l1 and passes through the point (5, 6). (a) Find an equation for l2 in the form ax + by + c = 0, where a, b and c are integers.


What is De Moivre's theorem?