Solve Vector Geometry Problem - Find Line Intersecting & Perpendicular

  • Thread starter Thread starter mathrocks
  • Start date Start date
  • Tags Tags
    Geometry Vector
AI Thread Summary
To find a line through the point (3,1,-2) that intersects and is perpendicular to the line defined by x=-1+t, y=-2+t, z=-1+t, one must consider the direction vectors of both lines. The direction vector of the given line is (1,1,1), and to find a perpendicular line, the dot product of the direction vectors must equal zero. It is noted that two perpendicular lines in three-dimensional space do not necessarily intersect. The discussion highlights that there are infinitely many lines through a point that can be perpendicular to a given line, and the solution involves solving for the intersection point by substituting values into the equations derived from the direction vectors. Ultimately, the resulting line equation is confirmed to be perpendicular through a dot product check.
mathrocks
Messages
105
Reaction score
0
I have a question about solving the following problem
"Find the line through (3,1,-2) that intersects and is perpendicular to the line x=-1+t, y=-2+t, z=-1+t."

My question is regarding the intersection part, I know how to find the equation of the line that is perpendicular to another line but not both perpendicular and intersecting.

thanks
 
Physics news on Phys.org
I'd think your forgeting that the dot product of two perpendicular vectors is 0 think about it...
 
what?
dot product...
the answer is as easy as you can think

(3,1,-2)+t(1,1,1)

why the hell you need dot product?
 
mathrocks said:
My question is regarding the intersection part, I know how to find the equation of the line that is perpendicular to another line but not both perpendicular and intersecting.
If two lines are perpendicular to each other, don't you think they're already intersecting?
 
what?
dot product...
the answer is as easy as you can think

(3,1,-2)+t(1,1,1)

why the hell you need dot product?

And that line is perpendicular to x=-1+t, y=-2+t, z=-1+t?

If two lines are perpendicular to each other, don't you think they're already intersecting?

No, two perpendicular lines in R^3 don't necessarily intersect.
 
Last edited:
Muzza said:
And that line is perpendicular to x=-1+t, y=-2+t, z=-1+t?

Wouldn't (3,1,-2)+t(1,1,1) be correct for the line perpendicular to x=-1+t, y=-2+t, z=-1+t since the vector <1,1,1> is coming from that?
 
A direction vector of (3,1,-2)+t(1,1,1) is (1,1,1), and a direction vector of x=-1+t, y=-2+t, z=-1+t is (1,1,1). Two lines are perpendicular if and only if their direction vectors are perpendicular. Surely (1,1,1) is not perpendicular to (1,1,1)?
 
Muzza said:
A direction vector of (3,1,-2)+t(1,1,1) is (1,1,1), and a direction vector of x=-1+t, y=-2+t, z=-1+t is (1,1,1). Two lines are perpendicular if and only if their direction vectors are perpendicular. Surely (1,1,1) is not perpendicular to (1,1,1)?

So, how would you go about finding a line that is perpendicular?
 
Muzza said:
No, two perpendicular lines in R^3 don't necessarily intersect.
Ah.. I over-looked that.
 
  • #10
mathrocks said:
So, how would you go about finding a line that is perpendicular?
The dot product between their direction vectors should be 0.
 
  • #11
Note: there exist an infinite number of lines (in 3D) through a given point and perpendicular to a given line. Perhaps part of the problem is that there are too many answer. You should know that, in 2D, a perpendicular to <a, b> is <b, -a> since that way <a, b>.<b,-a>= ab-ab= 0. In 3d, the simplest thing to do is just take one of the components 0 so that the problem goes back to 2D.

To find a perpendicular to <1, 1, 1> try <0, a, b> What must a, b be?
Of course, <a, 0, b> and <a, b, 0> would work as well.
 
  • #12
the line has the vector <1,1,1> as its direction
dot with the vector that lies on the perp line c...
<br /> \vect{c} = &lt;c_x, c_y, c_z&gt;
&lt;1,1,1&gt; dot &lt;c_x, c_y,c_z&gt; = 0
gives you
<br /> c_x = -c_y - c_z
c_y free
c_z free<br />

subracting the vector that points to the point on the line of perpendicularity (r), and the vector the point we are trying to make a line through gives us the vector in the direction of the line which is c...
<br /> &lt;r_x, r_y, r_z&gt; - &lt;3,1,-2&gt; = &lt;-c_y-c_z, c_y, c_z&gt;<br />
r_x - 3 = -c_y - c_z
r_y - 1 = c_y
r_z + 2 = c_z

however the terminal point of vector r must lie on the origal line..there fore..

r_x = t -1
r_y = t - 2
r_z = t - 1 ...substute...

<br /> (t-1) - 3 = -c_y - c_z
(t-2)-1 = c_y
(t - 1) + 2 = c_z

which we can easily solve for t...t = 2 put find the vector c by substuting in the t value...you'll get...
\vect{c} = &lt;-2, -1, 3&gt;
now we can form the line equation
x = -2t +3
y = -t + 1
z = 3t -2

done...check the dot product its perp
 
Last edited:
Back
Top