Tests edge cases, boundary conditions, and common misconceptions for vectors.
UT-1: Skew Lines — Classification and Shortest Distance
Question:
Two lines are given by:
L1:r=120+λ21−1
L2:r=314+μ1−12
(a) Determine whether L1 and L2 are parallel, intersecting, or skew.
(b) If skew, find the shortest distance between them.
(c) A student claims: “Since the direction vectors are not scalar multiples, the lines must intersect.” Explain why this reasoning is wrong.
[Difficulty: hard. Tests classification of lines in 3D and computation of shortest distance between skew lines.]
Solution:
(a) The direction vectors are d1=21−1 and d2=1−12.
These are not scalar multiples, so the lines are not parallel.
To check for intersection, set the position vectors equal:
1+2λ=3+μ⟹2λ−μ=2(i)
2+λ=1−μ⟹λ+μ=−1(ii)
0−λ=4+2μ⟹−λ−2μ=4(iii)
From (i) and (ii): adding gives 3λ=1So λ=31Then μ=−34.
Check (iii): −31−2(−34)=−31+38=37=4.
The system is inconsistent, so the lines do not intersect. They are skew.
(b) The shortest distance between skew lines is:
d=∣d1×d2∣∣(a2−a1)⋅(d1×d2)∣
a2−a1=314−120=2−14
d1×d2=i21j1−1k−12=1−5−3
∣d1×d2∣=1+25+9=35
(a2−a1)⋅(d1×d2)=2(1)+(−1)(−5)+4(−3)=2+5−12=−5
d=355=35535=735
(c) The student”s error is that in three dimensions, two lines that are not parallel can still fail to intersect. In 2D, non-parallel lines always intersect, but in 3D they can be skew — they pass at different “heights” and never meet. The student has incorrectly generalised the 2D result.
UT-2: Point-to-Plane Distance from Three Points
Question:
Three points are given: A(1,0,2), B(3,1,−1)And C(2,2,3).
(a) Find the Cartesian equation of the plane Π passing through A, BAnd C.
(b) Find the perpendicular distance from the origin to Π.
(c) A student computes AB×ACand gets 333Concluding the plane equation is x+y+z=3. Identify the error.
[Difficulty: hard. Tests plane from three points, normal vector computation, and point-to-plane distance.]
Solution:
(a)
AB=21−3,AC=121
n=AB×AC=i21j12k−31
=i(1+6)−j(2+3)+k(4−1)=7−53
Using point A(1,0,2):
7(x−1)−5(y−0)+3(z−2)=0
7x−7−5y+3z−6=0
7x−5y+3z=13
(b) The distance from the origin (0,0,0) to the plane 7x−5y+3z=13 is:
d=49+25+9∣7(0)−5(0)+3(0)−13∣=8313
(c) The student’s cross product computation is wrong. The correct cross product is 7−53Not 333. Specifically:
The x-component: 1×1−(−3)×2=1+6=7Not 3.
The y-component: −(2×1−(−3)×1)=−(2+3)=−5Not 3.
The z-component: 2×2−1×1=4−1=3Which coincidentally matches.
Integration Tests
Tests synthesis of vectors with other topics.
IT-1: Volume of a Tetrahedron — Scalar Triple Product
Question:
Four points are given: O(0, 0, 0)$$A(2, 1, 0)$$B(1, 3, 2)And C(0,1,4).
(a) Find the volume of tetrahedron OABC.
(b) Show that the four points are coplanar if and only if the scalar triple product [OA,OB,OC]=0.
[Difficulty: hard. Combines scalar triple product with geometric interpretation.]
Solution:
(a) The volume of a tetrahedron with vertices O$$A$$B$$C is:
V=61∣[OA,OB,OC]∣
OA=210,OB=132,OC=014
[OA,OB,OC]=OA⋅(OB×OC)
OB×OC=i10j31k24=10−41
[OA,OB,OC]=2(10)+1(−4)+0(1)=20−4=16
V=616=38
(b) The scalar triple product [a,b,c]=a⋅(b×c) equals the volume of the parallelepiped spanned by \mathbf{a}$$\mathbf{b}And c.
If the four points are coplanar, the three vectors \overrightarrow{OA}$$\overrightarrow{OB}$$\overrightarrow{OC} all lie in the same plane, meaning the parallelepiped they span has zero volume (it is flat). Therefore [OA,OB,OC]=0.
Conversely, if the scalar triple product is zero, then a⋅(b×c)=0Which means a is perpendicular to b×c. Since b×c is perpendicular to the plane containing b and cIt follows that a lies in the same plane as b and c. Hence the four points are coplanar.
IT-2: Reflection of a Point in a Plane
Question:
The plane Π has equation 2x−y+2z=5. The point P has coordinates (1,3,−1).
(a) Find the coordinates of the reflection P′ of P in the plane Π.
(b) Find the equation of the line PP′ and verify that the midpoint of PP′ lies on Π.
[Difficulty: hard. Combines line-plane intersection with vector geometry.]
Solution:
(a) The normal to Π is n=2−12.
The line through P perpendicular to Π is:
r=13−1+t2−12
Find the foot of the perpendicular (intersection with Π):
2(1+2t)−(3−t)+2(−1+2t)=5
2+4t−3+t−2+4t=5
9t−3=5⟹9t=8⟹t=98
Foot of perpendicular:
M=1+9163−98−1+916=92591997
The reflection P′ is such that M is the midpoint of PP′: