Here you will learn how to find point of intersection of two lines in 3d for both vector and cartesian form with example.
Let’s begin –
Point of Intersection of Two lines in 3d
(a) Cartesian Form
Algorithm :
Let the two lines be
x–x1a1 = y–y1b1 = z–z1c1 ……(i)
and x–x2a2 = y–y2b2 = z–z2c2 ………(ii)
1). Write the coordinates of general point on (i) and (ii). The coordinates of general points on (i) and (ii) are given by
x–x1a1 = y–y1b1 = z–z1c1 = λ and x–x2a2 = y–y2b2 = z–z2c2 = μ respectively,
i.e. (a1λ+x1, b1λ+y1, c1λ+z1) and (a2μ+x2, b2μ+y2, c2μ+z2)
2). If all the line (i) and (ii) intersect, then they have a common point.
∴ a_1\lambda + x_1 = a_2\mu + x_2, b_1\lambda + y_1 = b_2\mu + y_2 and c_1\lambda + z_1 = c_2\mu + z_2
3). Solve any two two of the equations in \lambda and \mu obtained in step 2. If the values of \lambda and \mu satisfy the third equation, then the lines (i) and (ii) intersect. Otherwise they do not intersect.
4). To obtain the coordinates of the point of intersection, substitute the value of \lambda (or \mu) in the coordinates of general point(s) obtained in step 1.
(b) Vector Form
Algorithm :
Let the two lines be
\vec{r} = (a_1\hat{i} + a_2\hat{j} + a_3\hat{k}) + \lambda (b_1\hat{i} + b_2\hat{j} + b_3\hat{k}) ……(i)
and \vec{r} = ({a_1}’ \hat{i} + {a_2}’ \hat{j} + {a_3}’ \hat{k}) + \mu ({b_1}’\hat{i} + {b_2}’\hat{j} + {b_3}’\hat{k}) ………(ii)
1). If all the line (i) and (ii) intersect, then they have a common point.
\therefore (a_1\hat{i} + a_2\hat{j} + a_3\hat{k}) + \lambda (b_1\hat{i} + b_2\hat{j} + b_3\hat{k}) = ({a_1}’ \hat{i} + {a_2}’ \hat{j} + {a_3}’ \hat{k}) + \mu ({b_1}’\hat{i} + {b_2}’\hat{j} + {b_3}’\hat{k})
\implies a_1 + \lambda b_1 = {a_1}’ + \mu {b_1}’, a_2 + \lambda b_2 = {a_2}’ + \mu {b_2}’ and a_3 + \lambda b_3 = {a_3}’ + \mu {b_3}’
2). Solve any two two of the equations in \lambda and \mu obtained in step 2. If the values of \lambda and \mu satisfy the third equation, then the lines (i) and (ii) intersect. Otherwise they do not intersect.
3). To obtain the position vector of the point of intersection, substitute the value of \lambda (or \mu) in (i) and (ii).
Example : Show that the line x – 1\over 2 = y – 2\over 3 = z – 3\over 4 and x – 4\over 5 = y – 1\over 2 = z intersect. Finf their point of intersection.
Solution : The coordinates of any point on first line are given by
x – 1\over 2 = y – 2\over 3 = z – 3\over 4 = \lambda
or, x = 2\lambda + 1, y = 3\lambda + 2 and z = 4\lambda + 3
The coordinates of any point on second line are given by
x – 4\over 5 = y – 1\over 2 = z = \mu
or, x = 5\mu + 4, y = 2\mu + 1, z = \mu
If the lines intersect, then they have a common point. So, for some values of \lambda and \mu, we must have,
2\lambda + 1 = 5\mu + 4, 3\lambda + 2 = 2\mu + 1 and 4\lambda + 3 = \mu
Solving first two of these equations, we get: \lambda = -1 and \mu = -1.
Clearly, \lambda = -1 and \mu = -1 satisfy the third equation. So, the given lines intersect.
Putting \lambda in (2\lambda + 1, 3\lambda + 2, 4\lambda + 3), the coordinates of the required point of intersection are (-1, -1, -1).