How to prove that two lines in 3D are not parallel and do not intersect; also, how to find the distance between them?
Problem Given two lines: $$(l_1)=(x,y,z)=(3,-1,2)+t(1,1,0)$$ $$(l_2)=(x,y,z)=(0,5,2)+t(1,-2,1)$$ Explain why these two lines are not parallel and why they do not intersect each other. Also, find ...
math.stackexchange.com
I am trying to teach myself Calc 3 and it’s hard because I have no teacher. So I look up stuff online and if I still don’t understand it I ask for help here.
Here is a link to a question asked by someone on stackexchange. The problem is to show the lines are not parallel, and then to show they do not intersect. Then it asks to find the minimum distance between the two lines.
Determining if two lines in R3 are parallel is easy. If they are parallel, then one of their slope vectors should be a scalar multiple of the other. In the linked problem, the two lines are not parallel.
What I don’t actually understand is determining if the lines intersect or not. What is the general method to determine if two lines intersect, and what is the intuition behind it?
I know you must start by setting the two lines equal to each other and solve the resulting system of equations. In this case we get:
(1) 3 + t = s
(2) -1 + t = 5 - 2s
(3) 0 = 2 + s
The top answerer to the question substitutes s=0 into the first two equations giving t = -3 and t = 6, and he says this is a contradiction. I don’t think this is how you solve a system of equations, but I could be wrong. How do we know it’s supposed to intersect at s = 0 and not s = 1 or s = 2.
And how do we know that if the system of equations has no solution then the lines do not intersect?
Finally, there is the problem of finding the minimum distance between the lines. First he gives some complicated distance formula ( I have no clue what the formula is, it’s not in my textbook), and then he gives another method by finding the projection of Q1Q2 onto n, which is perpendicular to both lines. How can a vector be perpendicular to a line, I think he means perpendicular to the slope vectors of the lines. Anyways, I don’t understand how to find the minimum distance at all.