Difficulty: Medium
Correct Answer: 15 KM
Explanation:
Introduction / Context:
Multi-leg vector problems require careful scaling of segments and consistent turn directions. We will compute coordinates after each segment and then the straight-line distance from start to finish.
Given Data / Assumptions:
Concept / Approach:
Use coordinate accumulation: East +x, West −x, North +y, South −y. Then apply the distance formula.
Step-by-Step Solution:
Start A at (0,0).After A→B: (3, 0).After B→C (North 9): (3, 9).After C→D (West 15): (−12, 9).Distance A→D = sqrt((−12)^2 + 9^2) = sqrt(144 + 81) = sqrt(225) = 15 km.
Verification / Alternative check:
The 9-12-15 triple is a scaled 3-4-5 triangle (×3). Diagram confirms displacement of 12 West and 9 North.
Why Other Options Are Wrong:
12, 16, 18 km do not match the exact Pythagorean distance computed.
Common Pitfalls:
Applying “left” relative to the fixed East–West axis instead of the current heading.
Final Answer:
15 KM
Discussion & Comments