Shortest Distance Between Skew Lines
Two lines in 3D that are neither parallel nor intersecting are called skew lines. The shortest distance between them is the length of the common perpendicular. For lines r = a1 + t*b1 and r = a2 + s*b2, the shortest distance is |(a2-a1).(b1 x b2)| / |b1 x b2|.
Shortest distance between skew lines is a high-weightage topic in JEE. It combines cross products, dot products, and scalar triple products in a single formula. Many students lose marks by mixing up the position and direction vectors.
Equation of a Line in 3D
A line in 3D through point (x1, y1, z1) with direction ratios (a, b, c) is written in symmetric form as (x-x1)/a = (y-y1)/b = (z-z1)/c. In vector form: r = a + t*b, where a is the position vector of the point and b is the direction vector.
The line equation is used in nearly every 3D geometry problem. Writing it correctly is the first step for finding intersections, shortest distances, and foot of perpendicular. JEE tests both the symmetric and vector forms.