Instructions: Attempt all questions. Show full working. No calculators unless stated. Use vector methods where appropriate.
Q1. [10 marks]
A drone starts at point A(1,2,3) and flies in a straight line, passing through B(4,−1,5).
(a) Find the direction cosines of its flight path. [3]
(b) At what point does the drone's straight-line path (extended in both directions) cross the plane 2x−y+z=12? [4]
(c) A sensor at S(0,0,0) must be no farther than 5 from the point where the path crosses the plane. Determine whether the sensor requirement is met. [3]
Q2. [10 marks]
Two lines are given by
L1:2x−1=−1y+1=3z−2,L2:1x−2=4y−3=2z+1.
(a) Show that the lines are skew. [3]
(b) Find the shortest distance between them. [4]
(c) Find the acute angle between the two lines, giving your answer to the nearest degree. [3]
Q3. [10 marks]
A triangular solar panel has vertices P(2,0,1), Q(1,3,2), R(4,1,−1).
(a) Find the equation of the plane containing the panel in the form ax+by+cz=d. [4]
(b) Find the acute angle between this plane and the ground plane z=0. [3]
(c) A light source is at T(6,5,4). Find its perpendicular distance from the panel's plane. [3]
Q4. [10 marks]
The point M divides the segment joining C(3,−2,4) and D(−1,6,−2) in the ratio k:1 (internally).
(a) Find the coordinates of M in terms of k. [3]
(b) Find k so that M lies on the plane x+y+z=5. [4]
(c) For this value of k, state the octant in which M lies. [3]
Q5. [10 marks]
A line ℓ passes through (0,1,−1) with direction ratios (1,2,2).
(a) Find the acute angle between ℓ and the plane Π:x−2y+2z=6. [4]
(b) Find the foot of the perpendicular from the point (0,1,−1) to the plane Π. [4]
(c) Hence find the reflection (image) of (0,1,−1) in the plane Π. [2]
(a) Direction vector AB=(3,−3,2), magnitude 9+9+4=22.
Direction cosines: (223,22−3,222). [3](1 for direction vector, 1 for magnitude, 1 for DCs.)
(b) Parametrize: (1+3t,2−3t,3+2t).
Substitute into 2x−y+z=12:
2(1+3t)−(2−3t)+(3+2t)=122+6t−2+3t+3+2t=12⇒11t+3=12⇒t=119.
Point =(1+1127,2−1127,3+1118)=(1138,−115,1151). [4](2 for substitution & solving t, 2 for point.)
(c) Distance from origin:
(1138)2+(115)2+(1151)2=111444+25+2601=114070≈1163.8≈5.80.
Since 5≈2.24<5.80, the requirement is NOT met. [3](2 for distance, 1 for conclusion.)
(a)d1=(2,−1,3), d2=(1,4,2). Not parallel (ratios differ).
Point difference a2−a1=(1,4,−3).
Scalar triple product:
1214−14−332=1(−1⋅2−3⋅4)−4(2⋅2−3⋅1)+(−3)(2⋅4−(−1)⋅1)=1(−2−12)−4(4−3)−3(8+1)=−14−4−27=−45=0.
Non-zero ⇒ not coplanar and not parallel ⇒ skew. [3](1 not parallel, 2 triple product ≠ 0.)
(a) Line direction d=(1,2,2), plane normal n=(1,−2,2).
sinθ=∣d∣∣n∣∣d⋅n∣=3⋅3∣1−4+4∣=91.
θ=arcsin(1/9)≈6.4°. [4](2 sin formula, 2 angle.)
(b) Foot of perpendicular from A(0,1,−1) to Π:x−2y+2z=6.
Line: (t,1−2t,−1+2t). Substitute:
t−2(1−2t)+2(−1+2t)=6⇒t−2+4t−2+4t=6⇒9t−4=6⇒t=910.
Foot F=(910,1−920,−1+920)=(910,−911,911). [4]
[ {"claim":"Q1(b) line meets plane at t=9/11 giving point (38/11,-5/11,51/11)","code":"t=Rational(9,11); P=(1+3*t, 2-3*t, 3+2*t); result = (2*P[0]-P[1]+P[2]==12) and P==(Rational(38,11),Rational(-5,11),Rational(51,11))"}, {"claim":"Q2(b) shortest distance between skew lines = 45/sqrt(278)","code":"d1=Matrix([2,-1,3]); d2=Matrix([1,4,2]); diff=Matrix([1,4,-3]); c=d1.cross(d2); dist=abs(diff.dot(c))/sqrt(c.dot(c)); result = simplify(dist - Rational(45,1)/sqrt(278))==0"}, {"claim":"Q3(c) distance from T(6,5,4) to plane x+z=3 is 7/sqrt(2)","code":"dist=Abs(6+4-3)/sqrt(2); result = simplify(dist - 7/sqrt(2))==0"}, {"claim":"Q5(b) foot of perpendicular is (10/9,-11/9,11/9) and lies on plane","code":"F=(Rational(10,9),Rational(-11,9),Rational(11,9)); result = (F[0]-2*F[1]+2*F[2]==6)"}]