I'm currently studying linear algebra mainly vectors and analytic geometry. I'm having trouble seeing "what goes where".
For example, in 2D coordinate system, if we are given the lines
$y1 = 2x + 1$
and
$y2 = 3x + 5$
and we must find their intersection, we put $y1 = y2$. Why? Because that is the point where they intersect, that is, that is the point where they are equal. Hence the above equation.
However, now that I'm working in 3D space, I'm having trouble with solving linear equations.
For example, I have two lines:
$p1... x = 1 + t, y = -1 + 2t, z = t$
and
$p2... x = 1 - t, y = 3 - t, z = t$
If I want to check if they intersect, I get that they don't, because if I put $x = x$, that is
$1 + t = 1 - t$
I get that
$t = 0$
and if I put that $y = y$, I get that
$- 1 + 2t = 3 - t$
which says that
$t = \frac 34$
and somehow from that I should conclude that by $t$ from $x = x$ not being equal to $t$ from $y = y$ the lines do not intersect. I fail to see that connection not only in this example, but in many others.
Can someone clarify that? What do solutions of a linear equations mean?
Thanks in advance!
"However, now that I'm working in 3D space, I'm having trouble with solving linear equations. For example, I have two lines: p1...x=1+t,y=−1+2t,z=t and p2...x=1−t,y=3−t,z= t"
It's a bad idea to use the same letter, t, for both lines. Instead write the second line as x= 1- s, y= 3- s, z= s
"If I want to check if they intersect, I get that they don't, because if I put x=x, that is 1+t=1−t I get that t=0"
No, that point does not necessarily correspond to the same value of the parameter. Instead x= x gives 1+ t= 1- s from which t= -s
and if I put that y=y, I get that −1+2t=3−t"
No, you get that 1- 2t= 3-s and, from that, s= 2t+ 2
"which says that t=34 and somehow from that I should conclude that by t from x=xnot being equal to t from y=y the lines do not intersect. I fail to see that connection not only in this example, but in many others." No, you have only used two equations, for x and y and two lines in two dimensions always intersect or are parallel. You should have, from x=x, t= -s and, from y= y, s= 2t+ 2. We can solve those two equations for s and t: Since t= -s, t= -2t+ 2 so that 3t= 2, t= 2/3. And then s= 2(2/3)+ 2= 4/3+ 2= 10/3.
Now, from "z= z", t= s which is not true.
"Can someone clarify that? What do solutions of a linear equations mean?"
If there had been values of s and t such that x= x, y= y, z= z for the two sets of equations then that one point would lie on both lies- it would be the point of intersection. Here's perhaps a better example, where the two lines do intersect- line 1 given by x= 2t-1, y= t+2, z= 1 and line 2 given by x= 3t+ 1, y= t+ 3, z= t+ 1 where I have written both lines using the same parameter, t, since lines are often given that way. But the first thing I would do is write one of the lines with a different parameter, say the second line as x= 3s+ 1, y= s+ 3, z= s+ 1. Then "x= x" gives 2t- 1= 3s+ 1, "y= y" gives t+ 2= s+ 3, and "z= z" gives 1= s+ 1. That last equation immediately gives s= 0. Putting that into the equation for "y= y", t+ 2= 0+ 3 so t= 1. Finally, setting s= 0 and t= 1 in the "x= x" equation, 2(1)- 1= 3(0)+ 1 or 1= 1. Since that equation is true, the two lines intersect at the point where t= 1 in the first set of equations, s= 1 in the second set. That is, the two lines intersect at x= 2(1)- 1= 3(0)+ 1= 1, y= 1+ 2= 0+ 3= 3, z= 1= 0+ 1= 1. That is, the two lines intersect at (1, 3, 1).