Difficulty: Medium
Correct Answer: East
Explanation:
Introduction / Context:The problem fixes the final relative bearing of home (south-east of school) and describes a 3-segment path with two consecutive right turns. We must infer the initial heading.
Given Data / Assumptions:
Concept / Approach:Two right turns advance the heading by 180° from the initial direction, and the two 1 km legs form perpendicular components. Test candidate initial headings and check the net displacement against “south-east.”
Step-by-Step Solution:
Assume initial East: displacement = (2, 0) + (0, −1) + (−1, 0) = (1, −1) ⇒ south-east ✔.Assume initial North: (0, 2) + (1, 0) + (0, −1) = (1, 1) ⇒ north-east ✖.Assume initial West or South produce other quadrants, not south-east.Verification / Alternative check:Only the “initial East” assumption yields a final vector with x > 0 and y < 0 (SE), matching the given relationship.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting that the second and third segments are both 1 km; asymmetry would change the quadrant test.
Final Answer:East
Discussion & Comments