Let L1 be the line passing through $$P = (-1, 3, -2) and Q = (5, -3, 10)$$ Let L2 be the line passing through $$(4,0,3)$$ in the direction of v= $$\begin{bmatrix} 3 \\ -1 \\ 1 \end{bmatrix} \quad$$ Do these lines intersect? If so, find the point of intersection.
My work:
L1 = P x Q which should give a det matrix of: \begin{vmatrix}
i & -1 & 5 \\
j & 3 & -3 \\
k & -2 & 10
\end{vmatrix}
Which should give you: $$ i(30-6)-j(-10+10)+k(3-15)$$
which gives the equation: $$24x-12z=0$$
L2 = $$\begin{bmatrix} 4 \\ 0 \\ 3 \end{bmatrix} \quad + \begin{bmatrix} 3 \\ -1 \\ 1 \end{bmatrix} \quad t$$
Which gives: $$x = 4+3t$$ $$ y = -t$$ $$z= 3+t$$
Now you have to sub in these values into L1:
$$ 24(4+3t) - 12(3+t) = 0$$ $$60 + 60t = 0$$ $$t = -1$$
Now sub t back into L2:
$$x = 4+3(-1) = 1$$ $$ y = -t = 1$$ $$z= 3+t = 2$$
Is this the point of intersection? I don't know if I did this question correctly.
You will get the system $$-1+6s=4-3t$$ $$3-6s=-t$$ $$-2+12s=3+t$$ adding the last two equations we obtain $$1+6s=3$$ so $$s=\frac{1}{3}$$ and $$t=-1$$ plugging this in your first equation we have $$1=1$$ so the intersection point is given by $$[x,y,z]=[7;1;2]$$