Find the shortest distance between two lines:

Click For Summary
SUMMARY

The shortest distance between the two skew lines L1: (0, 4, -3) + s(-1, 1, 3) and L2: (1, 2, 5) + t(-3, 2, 5) is calculated using the cross product of their direction vectors and the vector between a point on each line. The cross product of the direction vectors (-1, 1, 3) and (-3, 2, 5) yields (-1, -4, 1) with a magnitude of 3√2. The vector between the points (0, 4, -3) and (1, 2, 5) is correctly identified as (-1, 2, -8), leading to a dot product of -15. The final distance is determined by dividing the absolute value of the dot product by the magnitude of the cross product, resulting in a shortest distance of 5/√2.

PREREQUISITES
  • Understanding of vector operations including cross product and dot product
  • Familiarity with skew lines in three-dimensional geometry
  • Knowledge of vector projection techniques
  • Basic proficiency in calculating magnitudes of vectors
NEXT STEPS
  • Study vector projection methods in three-dimensional space
  • Learn about the geometric interpretation of skew lines
  • Explore applications of cross product in physics and engineering
  • Practice calculating distances between various geometric entities in 3D
USEFUL FOR

Mathematicians, physics students, engineers, and anyone involved in three-dimensional geometry or vector analysis will benefit from this discussion.

Simkate
Messages
24
Reaction score
0
Given the following two skew lines:
L1: (0, 4, -3) + s(-1, 1, 3)
L2: (1, 2, 5) + t(-3, 2, 5)

Find the shortest distance.



MY WORK::
Cross-product of the lines (-1, 1, 3) X (-3, 2, 5) = (-1, -4, 1) with length 3*sqrt(2)
Vector between the points (0, 4, -3) - (1, 2, 5) = (-1, 2, -8)

Dot product of those results (-1, 2, -8) . (-1, -4, 1) = -15

Remove sign and divide by cross-product length 15 / (3 sqrt(2)) = 5/sqrt(2)




I was wondering if the VECTOR between the points is right or is the reverse
(1,2,5)-(0,4,-3)= (1, -2, 13) ?
 
Physics news on Phys.org
Simkate said:
Given the following two skew lines:
L1: (0, 4, -3) + s(-1, 1, 3)
L2: (1, 2, 5) + t(-3, 2, 5)

Find the shortest distance.



MY WORK::
Cross-product of the lines (-1, 1, 3) X (-3, 2, 5) = (-1, -4, 1) with length 3*sqrt(2)
Vector between the points (0, 4, -3) - (1, 2, 5) = (-1, 2, -8)

Dot product of those results (-1, 2, -8) . (-1, -4, 1) = -15

Remove sign and divide by cross-product length 15 / (3 sqrt(2)) = 5/sqrt(2)




I was wondering if the VECTOR between the points is right or is the reverse
(1,2,5)-(0,4,-3)= (1, -2, 13) ?

The two lines can be thought of as lying in two parallel planes. The cross product of the directions of the two lines gives you a vector that is perpendicular to these planes.

Your first vector between the two points on the lines, <-1, 2, -8> is correct, but the opposite, <1, -2, 8> would also work. Was <1, -2, 13> a typo?

What you want is the projection of the vector <1, -2, 8> in the direction of the vector <-1, 4, 1> (I didn't check your cross-product work). That will give you the shortest distance between the two lines.
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 14 ·
Replies
14
Views
3K
Replies
4
Views
3K
Replies
30
Views
7K
  • · Replies 7 ·
Replies
7
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
Replies
2
Views
1K