Let the area of the triangle formed by the lines x+2=y−1=z,5x−3=−1y=1z−1 and −3x=3y−3=1z−2 be A. Then A2 is equal to ________.
Answer: 1
Solution
1. Key Concepts and Formulas
Parametric Form of a Line: A line passing through a point (x0,y0,z0) with a direction vector d=(a,b,c) can be expressed in parametric form as x=x0+λa, y=y0+λb, z=z0+λc, where λ is a scalar parameter. This form simplifies finding coordinates of any point on the line and is crucial for determining intersection points.
Intersection of Two Lines: To find the intersection point of two lines in 3D space, we equate their respective x,y,z coordinates from their parametric forms. This generates a system of three linear equations with two parameters (one for each line). Solving this system yields the parameter values corresponding to the intersection point.
Area of a Triangle using Vector Cross Product: Given three vertices of a triangle, V1,V2,V3, its area A can be calculated as half the magnitude of the cross product of two vectors forming two sides of the triangle originating from a common vertex. For example, A=21∣V1V2×V1V3∣. This formula is derived from the geometric interpretation of the cross product, where its magnitude represents the area of the parallelogram formed by the two vectors.
2. Step-by-Step Solution
Step 1: Express the given lines in parametric form.
We convert each symmetric equation of a line into its parametric form to easily represent any point on the line.
Line L1:x+2=y−1=z
Let x+2=y−1=z=λ.
Then, x=−2+λ, y=1+λ, z=λ.
A point on L1 is P1(−2,1,0) and its direction vector is d1=(1,1,1).
Line L2:5x−3=−1y=1z−1
Let 5x−3=−1y=1z−1=μ.
Then, x=3+5μ, y=−μ, z=1+μ.
A point on L2 is P2(3,0,1) and its direction vector is d2=(5,−1,1).
Line L3:−3x=3y−3=1z−2
Let −3x=3y−3=1z−2=ν.
Then, x=−3ν, y=3+3ν, z=2+ν.
A point on L3 is P3(0,3,2) and its direction vector is d3=(−3,3,1).
Step 2: Find the intersection point V1 of lines L1 and L2.
We equate the coordinates of a general point on L1 with a general point on L2 to find the parameters λ and μ that define their intersection.
−2+λ=3+5μ⟹λ−5μ=5(1)1+λ=−μ⟹λ+μ=−1(2)λ=1+μ⟹λ−μ=1(3)
Subtracting equation (3) from equation (2):
(λ+μ)−(λ−μ)=−1−1⟹2μ=−2⟹μ=−1.
Substitute μ=−1 into equation (2):
λ+(−1)=−1⟹λ=0.
Check with equation (1): 0−5(−1)=5, which is consistent.
Substitute λ=0 into the parametric equations for L1:
V1=(−2+0,1+0,0)=(−2,1,0).
Step 3: Find the intersection point V2 of lines L2 and L3.
We equate the coordinates of a general point on L2 with a general point on L3.
3+5μ=−3ν⟹5μ+3ν=−3(4)−μ=3+3ν⟹μ+3ν=−3(5)1+μ=2+ν⟹μ−ν=1(6)
Subtracting equation (5) from equation (4):
(5μ+3ν)−(μ+3ν)=−3−(−3)⟹4μ=0⟹μ=0.
Substitute μ=0 into equation (6):
0−ν=1⟹ν=−1.
Check with equation (5): 0+3(−1)=−3, which is consistent.
Substitute μ=0 into the parametric equations for L2:
V2=(3+5(0),−0,1+0)=(3,0,1).
Step 4: Find the intersection point V3 of lines L3 and L1.
We equate the coordinates of a general point on L3 with a general point on L1.
−3ν=−2+λ⟹λ+3ν=2(7)3+3ν=1+λ⟹λ−3ν=2(8)2+ν=λ⟹λ−ν=2(9)
Subtracting equation (8) from equation (7):
(λ+3ν)−(λ−3ν)=2−2⟹6ν=0⟹ν=0.
Substitute ν=0 into equation (9):
λ−0=2⟹λ=2.
Check with equation (8): 2−3(0)=2, which is consistent.
Substitute ν=0 into the parametric equations for L3:
V3=(−3(0),3+3(0),2+0)=(0,3,2).
The vertices of the triangle are V1=(−2,1,0), V2=(3,0,1), and V3=(0,3,2).
Step 5: Calculate the vectors forming two sides of the triangle.
We choose V1 as the common starting point for the vectors.
V1V2=V2−V1=(3−(−2),0−1,1−0)=(5,−1,1)V1V3=V3−V1=(0−(−2),3−1,2−0)=(2,2,2)
Step 6: Calculate the cross product of these two vectors.
The cross product N=V1V2×V1V3 gives a vector whose magnitude is the area of the parallelogram formed by the two vectors.
N=i52j−12k12N=i((−1)(2)−(1)(2))−j((5)(2)−(1)(2))+k((5)(2)−(−1)(2))N=i(−2−2)−j(10−2)+k(10+2)N=−4i−8j+12k=(−4,−8,12)
Step 7: Find the magnitude of the cross product and calculate the area of the triangle.
The magnitude of N is:
∣N∣=(−4)2+(−8)2+(12)2=16+64+144=224
The area A of the triangle is half the magnitude of the cross product:
A=21∣N∣=21224
We need to find A2:
A2=(21224)2=41×224=56
3. Common Mistakes & Tips
Arithmetic Errors: Calculating determinants and magnitudes involves many basic arithmetic operations. Double-check all additions, subtractions, and multiplications, especially with negative numbers.
Incorrect Parametric Form: Ensure the symmetric form of the line is correctly converted to parametric form, especially when the denominator is 1 (e.g., z=z0+λ⋅1).
System of Equations Errors: When solving for the parameters (λ,μ,ν), carefully solve the system of equations. Using elimination or substitution methods and verifying with the third equation is crucial.
Vector Subtraction Order: Ensure consistency in vector subtraction (e.g., V1V2=V2−V1, not V1−V2) to avoid sign errors in the cross product.
4. Summary
This problem involved finding the area of a triangle whose vertices are the pairwise intersection points of three lines in 3D space. We first converted the lines into their parametric forms to systematically find their intersection points. Once the three vertices of the triangle were identified, we formed two vectors representing two sides of the triangle originating from a common vertex. The area of the triangle was then calculated as half the magnitude of the cross product of these two vectors. Finally, we squared this area to obtain the required value. The calculated area squared is 56.