[Math] Definite method for finding the intersection of two cartesian lines in 3D.

3dlinear algebra

I have the following problem:

Determine if these lines intersect. If so, find their point of intersection.

$L1 = (4,5,-1)+t(1,1,2)$

$L2 = (6,11,-3)+s(2,4,1)$

I managed to solve this problem by 1) Doing a cross product, seeing that the result is not 0, and 2) plugging in a bunch of $t$'s and $s$'s by trial-and-error until I ended up finding the point $(2,3,-5)$, as the answers to many other similar homework questions say to do (like this one).

This process took me a very long time. As opposed to trial and error, is there a method that will always give me the point of intersection of two lines in either cartesian, parametric or symmetric form?

Best Answer

Simply write $$\left\{ \begin{array}{rcl} 4+t&=&6+2s\\ 5+t&=&11+4s\\ -1+2t&=&-3+s \end{array} \right.$$

And then solve the system formed by the two fisrt equations.
If the solution satisfies the third one, then the lines intersect and its intersection can be found substituting the found value for $t$ in the first line, or the value for $s$ in the second line.
If the solution doesn't satisfies the third equation, the lines do not intersect.

Related Question