Topics: Geometry - Line - 3D Space


Given two lines in , we can have four different cases:

  1. Both lines are the same line
  2. Both lines are parallel
  3. Both lines intersect on a single point
  4. Both lines never intersect, but one passes above the other

Determining the Case

Given two lines in , and , we can determine their specific case by calculating the following:

  1. If , , then
  2. If , , then and are parallel (but )
  3. If , , then and intersect on a single point
  4. If , then and never intersect, but one passes above the other (we say they cross each other)

We might find it convenient to check for the fourth condition first, then moving upwards, since we can reuse several of our calculations.