Intersection of Two Lines
Intersection of Two Lines
1. Line (obvious)
2. Point
Example:
Given two lines in space, either they are parallel or they intersect each other or they are skew? If they intersect, find point of intersection.
y = -1 + 4t y = 1 + 2s y=2+r
z=2–t z = -3 + 4s z = -2 + 2r
Solution:
From L1: V1 = 2i + 4j – k
V1 & V2 are not parallel. Hence they are not scalar multiple of each other.
Now, check if they intersect each other.
x = 3 + 2t = 1 + 4s => 2t – 4s = -2 … (1)
y = -1 + 4t = 1 + 2s => 4t – 2s = 2 …. (2)
z = 2 – t = -3 + 4s => -t – 4s = -5 …. (3)
2t – 4s = -2
2 (1) – 4s = -2
-4s = -2 -2
-4s = -4
s=1
-t – 4s = -5
-1 – 4 = -5
-5 = -5
Point of intersections:
x = 3 + 2(1) = 5
y = -1 + 4 (1) = 3
z=2–1=1
From L1: V1 = 2i + 4j – k
From L3: V3 = 2i + j + 2k
y = -1 + 4t = 2 + r => 4t – r = 3 …… (2)
3t = 4 “changing signs”
t = 4/3
Put it in (1)
2 (4/3) – 2r = 0
8/3 = 2r
r = 8/6
r = 4/3
4 (4/3) – (4/3) = 3
16/3 – 4/3 = 3
12/3 = 3
4≠3
V3 = 2i + j + 2k
V3 = 2 (2i + j + 2k)
V3 = 2 V2
1. Line (obvious)
2. Point
Example:
Find the point where x = 8/3 + 2t, y = -2t, z = 1 + t intersects the plane 3x + 2y + 6z = 6.
Solution:
3x + 2y + 6z = 6
8 + 6t – 4t + 6 + 6t = 6
8t + 14 = 6
8t = 6 - 14
8t = -8
t = -1
y = -2(-1) =2
z = 1 + (-1) =0
Either a plane
Or a line
Example Find the parametric equations for the line in which the planes 3x-6y-2z=15 and 2x+y-2z=5
intersect.
Solution:
For the line we need a vector and point of intersection of these two planes.
The line of intersection of two planes is perpendicular to both plane normal vectors ⃗
n1 and ⃗
n2
So n⃗1 =3 i⃗ −6 ⃗j−2 k⃗
n⃗2 =2 i⃗ + ⃗j−2 ⃗k
| k⃗
|
⃗i ⃗j
⃗v =⃗n1 × n⃗2 = 3 −6 −2
2 1 −2
|
⃗v =i⃗
1 −2
−j | |
−6 −2 ⃗ 3 −2 ⃗ 3 −6
2 −2
+k | |
2 1 |
⃗v =i⃗ (12+ 2)−⃗j (−6 +4)+ ⃗k (3+12)
⃗v =14 i⃗ +2 ⃗j+15 ⃗k
To find the point of intersection we take the equations of these two planes
3x-6y-2z=15
2x+y-2z=5
As number of equations is less than the number of variables so the system of equation has infinite many solutions from these infinite many
solutions we need one solution.
2 x+ y =5 →(2)
3 x−6 y=15
± 12 x ±6 y =±30
15 x=45
x=3
−6 y=15−9
y=1
So point of intersection is
P= (3,-1,0)
Equation of line
x=x o +t v 1=3+14 t
y= y o+ t v 2 =−1+ 2t
Practice Problems
Exercise: 12.5, Q# 57-60 (Thomas Calculus)