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)...