Difficulty: Medium
Correct Answer: North-East
Explanation:
Introduction / Context:Use vector addition for diagonal moves at 45° to axes, then compute the heading to the origin (uncle's house).
Given Data / Assumptions:
Concept / Approach:Compute position after three equal diagonal legs, then the direction from that point back to the origin.
Step-by-Step Solution:
After 45 NW → (−45, 45).Then 45 SW → (−90, 0).Then 45 SE → (−45, −45).Vector to origin = (45, 45) ⇒ heading North-East.Verification / Alternative check:Equal x and y positive components from current point indicate NE.
Why Other Options Are Wrong:They correspond to other quadrants.
Common Pitfalls:Adding diagonals as if axis-aligned or forgetting that final leg is “towards uncle's house”.
Final Answer:North-East
Discussion & Comments