Processing math: 100%

Point of Intersection of Two lines in 3d

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 

xx1a1 = yy1b1 = zz1c1                            ……(i)

and xx2a2 = yy2b2 = zz2c2                     ………(ii)

1). Write the coordinates of general point on (i) and (ii). The coordinates of general points on (i) and (ii) are given by

xx1a1 = yy1b1 = zz1c1 = λ  and  xx2a2 = yy2b2 = zz2c2 = μ 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.

a1λ+x1 = a2μ+x2, b1λ+y1 = b2μ+y2 and c1λ+z1 = c2μ+z2

3). Solve any two two of the equations in λ and μ obtained in step 2. If the values of λ and μ 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 λ (or μ) in the coordinates of general point(s) obtained in step 1.

(b) Vector Form

Algorithm :

Let the two lines be 

r = (a1ˆi+a2ˆj+a3ˆk) + λ (b1ˆi+b2ˆj+b3ˆk)                        ……(i)

and r = (a1ˆi+a2ˆj+a3ˆk) + μ (b1ˆi+b2ˆj+b3ˆk)                   ………(ii)

1). If all the line (i) and (ii) intersect, then they have a common point.

(a1ˆi+a2ˆj+a3ˆk) + λ (b1ˆi+b2ˆj+b3ˆk) = (a1ˆi+a2ˆj+a3ˆk) + μ (b1ˆi+b2ˆj+b3ˆk

a1+λb1 = a1+μb1, a2+λb2 = a2+μb2 and a3+λb3 = a3+μb3

2). Solve any two two of the equations in λ and μ obtained in step 2. If the values of λ and μ 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 λ (or μ) in (i) and (ii).

Example : Show that the line x12 = y23 = z34 and x45 = y12 = z intersect. Finf their point of intersection.

Solution : The coordinates of any point on first line are given by

x12 = y23 = z34 = λ

or, x = 2λ+1, y = 3λ+2 and z = 4λ+3

The coordinates of any point on second line are given by

x45 = y12 = z = μ 

or, x = 5μ+4, y = 2μ+1, z = μ

If the lines intersect, then they have a common point. So, for some values of λ and μ, we must have,

2λ+1 = 5μ+4, 3λ+2 = 2μ+1 and 4λ+3 = μ

Solving first two of these equations, we get: λ = -1 and μ = -1.

Clearly, λ = -1 and μ = -1 satisfy the third equation. So, the given lines intersect.

Putting λ in (2λ+1, 3λ+2, 4λ+3), the coordinates of the required point of intersection are (-1, -1, -1).

Leave a Comment

Your email address will not be published. Required fields are marked *