πŸŽ“ BookMCQ
← Back to 12. Three Dimensional Space: Vectors

πŸ“ Line through point with direction vector (28 MCQs)

πŸ“– From Calculus β€’ 12. Three Dimensional Space: Vectors β€’ 28 questions available

What is Line through point with direction vector?

Definition:
Specifying a point P0P_0 and nonzero direction vector dβƒ—\vec{d} uniquely determines a line in 3D as set {P0+tdβƒ—βˆ£t∈R}\{ P_0 + t\vec{d} \mid t \in \mathbb{R} \}, combining location and orientation.

Example:
Given point (0,1,βˆ’2)(0,1,-2) and direction ⟨3,0,1⟩\langle 3,0,1 \rangle, the line includes points like (3,1,βˆ’1)(3,1,-1) at t=1t=1 and (βˆ’3,1,βˆ’3)(-3,1,-3) at t=βˆ’1t=-1.

Reason:
This minimal specification avoids redundant constraints and directly supports vector-based algorithms for collision detection, camera positioning, and path interpolation.

6
Easy
12
Medium
10
Hard

πŸ“ All Line through point with direction vector MCQs

Q1. A line LL passes through point P(1,2,3)P(1, 2, 3) with direction vector vβƒ—=⟨2,βˆ’1,4⟩\vec{v} = \langle 2, -1, 4 \rangle. A student claims the symmetric equations are xβˆ’12=y+2βˆ’1=zβˆ’34\frac{x-1}{2} = \frac{y+2}{-1} = \frac{z-3}{4}. What is the fundamental error in this formulation?

A.The direction numbers were inverted.
B.The sign of the y-coordinate in the numerator is incorrect; it should be yβˆ’2y-2. βœ…
C.The denominator for z should be negative.
D.Symmetric equations cannot be formed when a direction component is non-zero.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: The symmetric form requires subtracting the coordinate of the given point from the variable. Since the point is (1,2,3)(1,2,3), the y-term must be yβˆ’2y-2, not y+2y+2. Using y+2y+2 implies the line passes through y=βˆ’2y=-2, which contradicts the given point PP. This tests attention to algebraic structure over rote memorization.

Q2. Given line L1:rβƒ—=⟨1,0,2⟩+t⟨3,1,βˆ’1⟩L_1: \vec{r} = \langle 1,0,2 \rangle + t\langle 3,1,-1 \rangle and point Q(4,1,1)Q(4,1,1), which condition must be satisfied for QQ to lie on L1L_1?

A.There exists a single scalar tt satisfying all three parametric equations simultaneously. βœ…
B.The vector PQ⃗\vec{PQ} must be perpendicular to the direction vector.
C.The distance from QQ to any point on L1L_1 must be zero.
D.The cross product of PQ⃗\vec{PQ} and the direction vector must equal the direction vector.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: For a point to lie on a line defined parametrically, the same parameter value tt must satisfy the x, y, and z equations concurrently. If different values of tt are required for each coordinate, the point is not on the line. This distinguishes between spatial proximity and actual incidence, addressing a common conceptual gap.

Q3. Two lines are defined as L1:rβƒ—1=⟨0,1,0⟩+s⟨1,2,3⟩L_1: \vec{r}_1 = \langle 0,1,0 \rangle + s\langle 1,2,3 \rangle and L2:rβƒ—2=⟨1,3,3⟩+t⟨2,4,6⟩L_2: \vec{r}_2 = \langle 1,3,3 \rangle + t\langle 2,4,6 \rangle. Which statement best describes their geometric relationship?

A.They intersect at exactly one point.
B.They are skew lines.
C.They are distinct parallel lines. βœ…
D.They are coincident (the same line).
πŸ’‘ Difficulty: hard | βœ… Correct: C

πŸ“– Explanation: The direction vectors are scalar multiples (⟨2,4,6⟩=2⟨1,2,3⟩\langle 2,4,6 \rangle = 2\langle 1,2,3 \rangle), indicating parallelism. To distinguish between coincident and distinct parallel lines, check if a point from L2L_2 lies on L1L_1. Solving ⟨1,3,3⟩=⟨0,1,0⟩+s⟨1,2,3⟩\langle 1,3,3 \rangle = \langle 0,1,0 \rangle + s\langle 1,2,3 \rangle yields inconsistent ss values, proving they are distinct parallel lines rather than identical.

Q4. A drone flies along a path modeled by rβƒ—(t)=⟨5,10,20⟩+tβŸ¨βˆ’1,2,βˆ’3⟩\vec{r}(t) = \langle 5, 10, 20 \rangle + t\langle -1, 2, -3 \rangle where tt is time in seconds. At what time does the drone reach an altitude of z=8z=8, and is this physically meaningful within the model's domain tβ‰₯0t \geq 0?

A.t=4t=4; yes, it occurs during flight. βœ…
B.t=βˆ’4t=-4; no, it occurred before launch.
C.t=4t=4; no, the drone crashes at that altitude.
D.t=12t=12; yes, but only if direction reverses.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Set z(t)=20βˆ’3t=8z(t) = 20 - 3t = 8 to find t=4t=4. Since t=4β‰₯0t=4 \geq 0, it is within the valid domain. This application question integrates physical constraints with vector parametrization, requiring students to validate mathematical solutions against real-world boundary conditions rather than accepting algebraic results uncritically.

Q5. Consider the line passing through A(2,βˆ’1,4)A(2, -1, 4) with direction dβƒ—=⟨a,b,c⟩\vec{d} = \langle a, b, c \rangle. If the line is perpendicular to the plane 3xβˆ’y+2z=73x - y + 2z = 7, what constraint does this impose on the direction vector components?

A.a=3,b=βˆ’1,c=2a=3, b=-1, c=2 exactly.
B.⟨a,b,c⟩\langle a,b,c \rangle must be orthogonal to ⟨3,βˆ’1,2⟩\langle 3,-1,2 \rangle.
C.⟨a,b,c⟩\langle a,b,c \rangle must be parallel to ⟨3,βˆ’1,2⟩\langle 3,-1,2 \rangle, so a/3=b/(βˆ’1)=c/2a/3 = b/(-1) = c/2. βœ…
D.No constraint exists; any direction works.
πŸ’‘ Difficulty: medium | βœ… Correct: C

πŸ“– Explanation: A line perpendicular to a plane must have its direction vector parallel to the plane’s normal vector ⟨3,βˆ’1,2⟩\langle 3,-1,2 \rangle. Parallel vectors are scalar multiples, leading to proportional components. Students often confuse perpendicularity of line-to-plane with orthogonality of vectors; this question targets that specific misconception through mixed concept integration.

Q6. A student derives the vector equation of a line through P(3,0,βˆ’1)P(3,0,-1) and Q(3,0,5)Q(3,0,5) as rβƒ—=⟨3,0,βˆ’1⟩+t⟨0,0,0⟩\vec{r} = \langle 3,0,-1 \rangle + t\langle 0,0,0 \rangle. Why is this representation invalid despite using correct points?

A.The direction vector cannot be the zero vector; it fails to define a unique line. βœ…
B.The points are identical, so no line exists.
C.The z-coordinates should have been swapped.
D.Vector equations require unit direction vectors.
πŸ’‘ Difficulty: easy | βœ… Correct: A

πŸ“– Explanation: The direction vector PQβƒ—=⟨0,0,6⟩\vec{PQ} = \langle 0,0,6 \rangle, not ⟨0,0,0⟩\langle 0,0,0 \rangle. The student likely subtracted incorrectly or assumed identical coordinates imply zero displacement. A zero direction vector collapses the parametric equation to a single point, violating the definition of a line. This error analysis question reinforces foundational vector arithmetic prerequisites.

Q7. In a 3D graph, line LL appears to pass through the origin and extend diagonally upward. Its projection onto the xy-plane is the line y=xy=x, and onto the xz-plane is z=2xz=2x. Which vector equation correctly represents LL?

A.rβƒ—=t⟨1,1,2⟩\vec{r} = t\langle 1,1,2 \rangle βœ…
B.rβƒ—=t⟨1,1,1⟩\vec{r} = t\langle 1,1,1 \rangle
C.rβƒ—=⟨0,0,0⟩+t⟨2,2,1⟩\vec{r} = \langle 0,0,0 \rangle + t\langle 2,2,1 \rangle
D.rβƒ—=t⟨1,2,1⟩\vec{r} = t\langle 1,2,1 \rangle
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: Graph interpretation requires synthesizing projections. The xy-projection y=xy=x implies equal x and y components. The xz-projection z=2xz=2x implies z is twice x. Thus, direction ratios are 1:1:21:1:2. Option A satisfies both. This tests spatial reasoning beyond symbolic manipulation, aligning with graph-based HOTS requirements.

Q8. Line LL has direction vector vβƒ—=⟨1,βˆ’2,3⟩\vec{v} = \langle 1, -2, 3 \rangle. Another line MM has direction wβƒ—=βŸ¨βˆ’2,4,βˆ’6⟩\vec{w} = \langle -2, 4, -6 \rangle. A student argues they cannot be parallel because wβƒ—β‰ vβƒ—\vec{w} \neq \vec{v}. How would you refute this using vector properties?

A.Parallelism requires identical vectors, so the student is correct.
B.Vectors are parallel if one is a nonzero scalar multiple of the other; here wβƒ—=βˆ’2vβƒ—\vec{w} = -2\vec{v}. βœ…
C.Only unit vectors can be compared for parallelism.
D.Direction vectors must have positive components to indicate parallelism.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Parallel vectors need not be identical; scalar multiplication preserves direction (or reverses it if negative). Since wβƒ—=βˆ’2vβƒ—\vec{w} = -2\vec{v}, they are collinear. This direct recall question addresses a pervasive misconception that visual or numerical dissimilarity negates parallelism, reinforcing the formal definition over intuitive judgment.

Q9. A navigation system models two aircraft paths as rβƒ—A=⟨0,0,10⟩+t⟨1,0,0⟩\vec{r}_A = \langle 0,0,10 \rangle + t\langle 1,0,0 \rangle and rβƒ—B=⟨5,0,10⟩+s⟨0,1,0⟩\vec{r}_B = \langle 5,0,10 \rangle + s\langle 0,1,0 \rangle. Do these paths intersect, and if so, do the aircraft collide?

A.Paths intersect at (5,0,10)(5,0,10), and collision occurs if t=s=5t=s=5.
B.Paths intersect at (5,0,10)(5,0,10), but collision depends on whether both aircraft occupy that point at the same time parameter. βœ…
C.Paths are skew and never meet.
D.Paths are parallel and maintain constant separation.
πŸ’‘ Difficulty: hard | βœ… Correct: B

πŸ“– Explanation: Spatial intersection occurs when position vectors are equal for some t,st,s; solving gives t=5,s=0t=5, s=0 at (5,0,10)(5,0,10). However, collision requires simultaneous occupancy, meaning the same time value. Since parameters represent independent times, intersection β‰  collision. This scenario-based question separates geometric coincidence from temporal dynamics, crucial in applied modeling.

Q10. Which of the following represents the same line as rβƒ—=⟨2,βˆ’1,3⟩+t⟨4,βˆ’2,6⟩\vec{r} = \langle 2, -1, 3 \rangle + t\langle 4, -2, 6 \rangle?

A.rβƒ—=⟨2,βˆ’1,3⟩+s⟨2,βˆ’1,3⟩\vec{r} = \langle 2, -1, 3 \rangle + s\langle 2, -1, 3 \rangle
B.rβƒ—=⟨6,βˆ’3,9⟩+uβŸ¨βˆ’2,1,βˆ’3⟩\vec{r} = \langle 6, -3, 9 \rangle + u\langle -2, 1, -3 \rangle
C.Both A and B βœ…
D.Neither A nor B
πŸ’‘ Difficulty: medium | βœ… Correct: C

πŸ“– Explanation: Option A uses half the original direction vector, which is valid since direction can be scaled. Option B uses a point obtained at t=1t=1 in the original line and the negative direction vector, which traces the same set of points backward. Both represent identical geometric lines. This tests understanding that lines are sets of points, not tied to specific parametrizations.

Q11. A student attempts to find where line rβƒ—=⟨1,2,3⟩+t⟨0,1,0⟩\vec{r} = \langle 1,2,3 \rangle + t\langle 0,1,0 \rangle intersects the plane x=5x=5. They conclude no solution exists because the x-component is constant. Is this reasoning valid?

A.Yes; a vertical line in y cannot reach x=5x=5. βœ…
B.No; the line actually intersects at t=3t=3.
C.Yes; but only because the direction vector has a zero x-component.
D.No; the intersection occurs at (1,2,3)(1,2,3).
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: The line has fixed x=1x=1 for all tt, so it never attains x=5x=5. The student’s conclusion is correct, and the reasoning about the zero x-component causing constancy is sound. This validates proper error-free analysis while testing understanding of how directional zeros constrain spatial reach, avoiding false positives in diagnostics.

Q12. Given point P(0,0,0)P(0,0,0) and direction vβƒ—=⟨1,1,1⟩\vec{v} = \langle 1,1,1 \rangle, compare the efficiency of finding the point on the line closest to Q(1,0,0)Q(1,0,0) using projection versus calculus minimization. Which method is more direct and why?

A.Calculus is better because it avoids vector operations.
B.Projection is more direct: minimize distance via orthogonality condition (PQβƒ—βˆ’tvβƒ—)β‹…vβƒ—=0(\vec{PQ} - t\vec{v}) \cdot \vec{v} = 0. βœ…
C.Both are equally efficient for this simple case.
D.Neither works; must use Lagrange multipliers.
πŸ’‘ Difficulty: hard | βœ… Correct: B

πŸ“– Explanation: Projection leverages geometric insight: the shortest distance occurs when the connecting vector is orthogonal to the line. This yields a linear equation in tt. Calculus requires minimizing a quadratic function, involving derivatives. For lines, projection is inherently simpler. This comparative analysis question evaluates method selection based on structural understanding, not just procedural fluency.

Q13. A line is defined by two points A(1,2,3)A(1,2,3) and B(4,5,6)B(4,5,6). A third point C(7,8,9)C(7,8,9) is claimed to be collinear. Without computing distances, how can you verify collinearity using vectors?

A.Check if AB⃗×AC⃗=0⃗\vec{AB} \times \vec{AC} = \vec{0}.
B.Check if ABβƒ—β‹…ACβƒ—=∣ABβƒ—βˆ£βˆ£ACβƒ—βˆ£\vec{AB} \cdot \vec{AC} = |\vec{AB}||\vec{AC}|.
C.Verify that CC satisfies the symmetric equations derived from AA and BB.
D.All of the above are valid methods. βœ…
πŸ’‘ Difficulty: medium | βœ… Correct: D

πŸ“– Explanation: Cross product zero indicates parallel vectors sharing a point, hence collinearity. Dot product equality implies angle zero, also indicating alignment. Symmetric equations test parametric consistency. All three are mathematically equivalent verification strategies. This mixed-concept question encourages flexible thinking about collinearity beyond a single algorithmic approach.

Q14. In Olympic-style geometry, consider line LL through origin with direction ⟨a,b,c⟩\langle a,b,c \rangle where a2+b2+c2=1a^2+b^2+c^2=1. If rotating LL by 90∘90^\circ about the z-axis yields a line with direction βŸ¨βˆ’b,a,c⟩\langle -b,a,c \rangle, what invariant property confirms the rotation preserved the line’s β€˜vertical’ character?

A.The z-component remains unchanged.
B.The magnitude of the direction vector stays 1.
C.The dot product with ⟨0,0,1⟩\langle 0,0,1 \rangle is invariant.
D.All of the above βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: Rotation about z-axis fixes the z-component, preserves norm, and maintains the angle with the z-axis (hence dot product with k-hat). All three reflect the rotational symmetry. This Olympiad-level question synthesizes transformation geometry with vector invariants, demanding deep conceptual integration beyond standard curriculum applications.

Q15. A robotics arm moves along rβƒ—(t)=⟨t,t2,t3⟩\vec{r}(t) = \langle t, t^2, t^3 \rangle. Can this path be represented as a line determined by a point and a constant direction vector? Justify your answer.

A.Yes, with point (0,0,0)(0,0,0) and direction ⟨1,0,0⟩\langle 1,0,0 \rangle.
B.No, because the direction changes with tt; it is not linear. βœ…
C.Yes, if restricted to t>0t>0.
D.No, unless reparameterized as r⃗=p⃗+sv⃗\vec{r} = \vec{p} + s\vec{v} with constant v⃗\vec{v}.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: A line requires constant direction; here velocity \vec{r}'(t) = \langle 1,2t,3t^2 \rangle varies with tt, confirming curvature. Parametric cubic paths are not straight lines regardless of domain restriction. This application question tests recognition of linearity criteria in dynamic systems, preventing misclassification of trajectories.

Q16. When converting parametric equations x=2+3t,y=1βˆ’t,z=4+2tx=2+3t, y=1-t, z=4+2t to symmetric form, a student writes xβˆ’23=yβˆ’1βˆ’1=zβˆ’42\frac{x-2}{3} = \frac{y-1}{-1} = \frac{z-4}{2}. Another writes 2βˆ’xβˆ’3=1βˆ’y1=4βˆ’zβˆ’2\frac{2-x}{-3} = \frac{1-y}{1} = \frac{4-z}{-2}. Are these equivalent?

A.No; signs differ fundamentally.
B.Yes; multiplying numerator and denominator by -1 in each fraction preserves equality. βœ…
C.Only if tt is negative.
D.They represent different lines entirely.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Algebraically, ab=βˆ’aβˆ’b\frac{a}{b} = \frac{-a}{-b}. Both forms encode identical relationships between coordinates and parameter. This tests symbolic flexibility and guards against sign-based misconceptions in equation manipulation, emphasizing equivalence over superficial appearance.

Q17. A line passes through (1,1,1)(1,1,1) with direction ⟨2,0,0⟩\langle 2,0,0 \rangle. Why can’t symmetric equations be written in standard form for this line?

A.Because the y and z components of direction are zero, causing division by zero. βœ…
B.Because the line is horizontal.
C.Because symmetric equations require unit direction vectors.
D.Because the point has equal coordinates.
πŸ’‘ Difficulty: easy | βœ… Correct: A

πŸ“– Explanation: Symmetric form divides by direction components; zero denominators are undefined. Instead, describe as y=1,z=1y=1, z=1 with xx free. This foundational recall ensures students recognize limitations of representations and adapt notation appropriately, avoiding mechanical application failures.

Q18. Two lines L1:r⃗=a⃗+tu⃗L_1: \vec{r} = \vec{a} + t\vec{u} and L2:r⃗=b⃗+sv⃗L_2: \vec{r} = \vec{b} + s\vec{v} are given. Under what condition are they guaranteed to be coplanar?

A.u⃗×v⃗=0⃗\vec{u} \times \vec{v} = \vec{0}
B.(bβƒ—βˆ’aβƒ—)β‹…(uβƒ—Γ—vβƒ—)=0(\vec{b}-\vec{a}) \cdot (\vec{u} \times \vec{v}) = 0 βœ…
C.u⃗⋅v⃗=0\vec{u} \cdot \vec{v} = 0
D.∣uβƒ—βˆ£=∣vβƒ—βˆ£|\vec{u}| = |\vec{v}|
πŸ’‘ Difficulty: hard | βœ… Correct: B

πŸ“– Explanation: Coplanarity requires the vector between points to lie in the plane spanned by direction vectors, i.e., scalar triple product zero. If directions are parallel (uβƒ—Γ—vβƒ—=0\vec{u}\times\vec{v}=0), they’re automatically coplanar, but the triple product condition covers both parallel and intersecting cases universally. This advanced application integrates multiple vector operations for comprehensive spatial reasoning.

Q19. A student models a laser beam as line LL through P(0,0,0)P(0,0,0) with direction ⟨1,1,0⟩\langle 1,1,0 \rangle. They claim the beam never rises above z=0z=0. Is this claim valid based solely on the vector equation?

A.Yes; the z-component of direction is zero, so z remains constant at 0. βœ…
B.No; beams can diffract outside the model.
C.Yes, but only if the medium is homogeneous.
D.No; the direction vector could change over distance.
πŸ’‘ Difficulty: medium | βœ… Correct: A

πŸ“– Explanation: Within the idealized line model, z(t)=0+0β‹…t=0z(t) = 0 + 0\cdot t = 0 for all tt. Physical phenomena like diffraction are outside the mathematical scope. The question assesses adherence to model assumptions versus real-world complexity, a critical distinction in applied mathematics.

Q20. Given line L:rβƒ—=⟨3,βˆ’2,1⟩+t⟨1,4,βˆ’2⟩L: \vec{r} = \langle 3, -2, 1 \rangle + t\langle 1, 4, -2 \rangle, find the value of tt such that the point on LL is equidistant from planes x=0x=0 and y=0y=0. Set up the correct equation.

A.∣3+t∣=βˆ£βˆ’2+4t∣|3+t| = |-2+4t|
B.3+t=βˆ’2+4t3+t = -2+4t
C.(3+t)2=(βˆ’2+4t)2(3+t)^2 = (-2+4t)^2
D.Both A and C βœ…
πŸ’‘ Difficulty: hard | βœ… Correct: D

πŸ“– Explanation: Distance to x=0x=0 is ∣x∣|x|, to y=0y=0 is ∣y∣|y|. Equating absolute values leads to ∣3+t∣=βˆ£βˆ’2+4t∣|3+t| = |-2+4t|, whose solutions come from squaring both sides or considering sign cases. Both A and C are valid formulations. This multi-step problem combines line parametrization with absolute value geometry, requiring careful setup.

Q21. A line is defined by point PP and direction v⃗\vec{v}. If v⃗\vec{v} is replaced by 2v⃗2\vec{v}, how does the set of points on the line change?

A.It doubles in length.
B.It remains identical. βœ…
C.It shifts position.
D.It becomes denser.
πŸ’‘ Difficulty: easy | βœ… Correct: B

πŸ“– Explanation: Scaling the direction vector only changes parametrization speed, not the geometric locus. Every point reachable with vβƒ—\vec{v} is reachable with 2vβƒ—2\vec{v} via adjusted parameter. This reinforces that lines are infinite sets independent of vector magnitude, countering intuitive notions of 'size' in direction vectors.

Q22. In error analysis, a student computes the line through A(1,0,0)A(1,0,0) and B(0,1,0)B(0,1,0) as rβƒ—=⟨1,0,0⟩+t⟨1,1,0⟩\vec{r} = \langle 1,0,0 \rangle + t\langle 1,1,0 \rangle. Identify the mistake and its consequence.

A.Used BA⃗\vec{BA} instead of AB⃗\vec{AB}; line is reversed but same set.
B.Used Aβƒ—+Bβƒ—\vec{A}+\vec{B} as direction; line passes through wrong points. βœ…
C.Forgot to normalize direction; distances are scaled.
D.No error; this is correct.
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Correct direction is ABβƒ—=βŸ¨βˆ’1,1,0⟩\vec{AB} = \langle -1,1,0 \rangle. Using ⟨1,1,0⟩\langle 1,1,0 \rangle creates a line through AA but not BB, since BB doesn’t satisfy ⟨0,1,0⟩=⟨1,0,0⟩+t⟨1,1,0⟩\langle 0,1,0 \rangle = \langle 1,0,0 \rangle + t\langle 1,1,0 \rangle. This error analysis highlights vector subtraction order importance and validates solutions against defining points.

Q23. A graph shows a line segment from (0,0,0)(0,0,0) to (2,2,2)(2,2,2). If extended infinitely in both directions as a line, which vector equation captures the full line, not just the segment?

A.rβƒ—=t⟨2,2,2⟩,0≀t≀1\vec{r} = t\langle 2,2,2 \rangle, 0 \leq t \leq 1
B.rβƒ—=t⟨1,1,1⟩,t∈R\vec{r} = t\langle 1,1,1 \rangle, t \in \mathbb{R} βœ…
C.rβƒ—=⟨1,1,1⟩+t⟨1,1,1⟩,tβ‰₯0\vec{r} = \langle 1,1,1 \rangle + t\langle 1,1,1 \rangle, t \geq 0
D.rβƒ—=⟨2,2,2⟩+tβŸ¨βˆ’1,βˆ’1,βˆ’1⟩,t≀0\vec{r} = \langle 2,2,2 \rangle + t\langle -1,-1,-1 \rangle, t \leq 0
πŸ’‘ Difficulty: medium | βœ… Correct: B

πŸ“– Explanation: Segments restrict parameter range; lines require t∈Rt \in \mathbb{R}. Option B uses a simplified direction and unrestricted domain, representing the infinite extension. Others impose bounds or offsets limiting coverage. This graph-based question links visual representation to parametric freedom, ensuring students distinguish finite vs. infinite objects.

Q24. Compare two methods to define a line: (1) two points A,BA,B, (2) point AA and direction v⃗=AB⃗\vec{v} = \vec{AB}. In computational geometry, why might method (2) be preferred despite equivalence?

A.Method (2) avoids redundant storage of point B. βœ…
B.Method (2) prevents division by zero in symmetric forms.
C.Method (1) is always superior for interpolation.
D.Both are computationally identical.
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: Storing a point and precomputed direction reduces memory and avoids repeated vector subtraction in algorithms. While mathematically equivalent, implementation efficiency favors explicit direction vectors. This mixed-concept question bridges theory and practice, highlighting contextual advantages beyond pure mathematics.

Q25. A line has direction vector ⟨0,3,0⟩\langle 0, 3, 0 \rangle. A student simplifies this to ⟨0,1,0⟩\langle 0,1,0 \rangle for symmetric equations. Is this simplification always permissible?

A.Yes, because direction vectors can be scaled by any nonzero scalar. βœ…
B.No, because scaling changes the line’s position.
C.Only if the original vector has integer components.
D.No, because zero components cannot be scaled.
πŸ’‘ Difficulty: easy | βœ… Correct: A

πŸ“– Explanation: Direction defines orientation, not magnitude. Nonzero scaling preserves the line’s geometry. Simplifying to unit or reduced form aids computation without altering the object. This reinforces abstraction of direction from specific vector instances, a key conceptual milestone.

Q26. In a challenging problem, line LL passes through (1,2,3)(1,2,3) and is orthogonal to both uβƒ—=⟨1,0,1⟩\vec{u} = \langle 1,0,1 \rangle and vβƒ—=⟨0,1,1⟩\vec{v} = \langle 0,1,1 \rangle. Find its direction vector without guessing.

A.Compute uβƒ—Γ—vβƒ—=βŸ¨βˆ’1,βˆ’1,1⟩\vec{u} \times \vec{v} = \langle -1, -1, 1 \rangle.
B.Solve d⃗⋅u⃗=0\vec{d} \cdot \vec{u} = 0 and d⃗⋅v⃗=0\vec{d} \cdot \vec{v} = 0 as a system.
C.Both A and B yield valid directions. βœ…
D.Insufficient information; need a third vector.
πŸ’‘ Difficulty: hard | βœ… Correct: C

πŸ“– Explanation: Orthogonality to two nonparallel vectors implies direction is parallel to their cross product. Alternatively, solving the homogeneous system gives the same solution space. Both methods are valid and equivalent. This Olympiad-style question rewards multiple solution pathways and deep understanding of orthogonality conditions in 3D.

Q27. A student asserts that if two lines have proportional direction vectors, they must intersect. Provide a counterexample and explain the flaw.

A.Lines rβƒ—=t⟨1,0,0⟩\vec{r} = t\langle 1,0,0 \rangle and rβƒ—=⟨0,1,0⟩+s⟨2,0,0⟩\vec{r} = \langle 0,1,0 \rangle + s\langle 2,0,0 \rangle are parallel but disjoint.
B.Proportional directions guarantee intersection only in 2D.
C.The student confused parallelism with concurrency.
D.All of the above βœ…
πŸ’‘ Difficulty: medium | βœ… Correct: D

πŸ“– Explanation: In 3D, proportional directions imply parallelism, but parallel lines may be distinct and non-intersecting. Intersection requires both directional alignment and positional coincidence. The counterexample demonstrates this, and the explanation clarifies dimensional dependence. This error analysis dismantles a persistent 2D-to-3D transfer misconception.

Q28. Model a zipper’s teeth as a line through (0,0,0)(0,0,0) with direction ⟨1,0,1⟩\langle 1,0,1 \rangle. If the fabric stretches uniformly by factor 2 in the z-direction only, how does the line’s direction vector transform?

A.Becomes ⟨1,0,2⟩\langle 1,0,2 \rangle βœ…
B.Becomes ⟨2,0,2⟩\langle 2,0,2 \rangle
C.Remains ⟨1,0,1⟩\langle 1,0,1 \rangle
D.Becomes ⟨1,0,0.5⟩\langle 1,0,0.5 \rangle
πŸ’‘ Difficulty: hard | βœ… Correct: A

πŸ“– Explanation: Non-uniform scaling transforms coordinates: (x,y,z)β†’(x,y,2z)(x,y,z) \to (x,y,2z). Original direction ⟨1,0,1⟩\langle 1,0,1 \rangle maps to ⟨1,0,2⟩\langle 1,0,2 \rangle. The line’s slope in xz-plane changes, reflecting material deformation. This advanced application integrates linear transformations with geometric modeling, testing adaptability of vector concepts to physical distortions.

πŸ”— Related Topics (MCQs)