We will solve the problem by two ways first we shall write the parameterized equations of the line:
Because the x and y coordinates lines L1 and L2 are the same, we can find the values of s and t.
x: −3 + 2t = 4 + s
y: 0 + 4t = 1 −11s
x: 2t − s = 7
y: 4t + 11s = 1
Now solving by Cramer's rule or by substitution we get:
Once we fount the values of t and s the only thing remained is to check if the values of z in both lines are equal if yes then the lines intersect.
L2 z: −2 + 3 * 3 = 7 and L2 z: 3 + 4 = 7 so the lines intersect.
To find the intersection point, we can substitute the value of t = 3 into the parametric equation to get: Pi (3, 12, 7).
Another way to solve the problem is to calculate the distance between the lines, if the distance is 0 then the lines intersect.
The vectors of the points on the line and the direction numbers are:
r1 = (−3, 0, −2) r2 = (4, 1, 3) e1 = (2, 4, 3) e2 = (1, −11, −4)
The vector in the direction of the shortest line (perpendicular to both lines) is:
The unit vector in this direction is:
The connecting vector between the points of both lines is:
PQ = r2 − r1 = (4 + 3, 1 − 0, 3 + 2) = 7i + j + 5k
Now the only step remains is to find the distance between the lines is to project PQ to the shortest line direction:

As expected, we get 0 distance and the lines are intersecting each other.