Introduction
Multiple People Movement puzzles give several persons individual movement instructions (different directions/lengths or turn sequences). Your task is to compare their final positions or facings - for example, who is farthest from a point, who is to the left of whom, or the relative directions between them.
This pattern is important because many competitive exams and aptitude tests use multi-agent movement to test spatial reasoning, vector addition, and relative-position inference.
Pattern: Multiple People Movement Puzzle
Pattern
Key concept: Treat each person’s path as a vector (or a facing-change sequence), compute their final coordinates/facings, then compare pairwise to answer relative queries.
Practical rules
- Convert each person’s movements into coordinate changes on a plane: North = +y, South = -y, East = +x, West = -x.
- Add/subtract components separately (sum all x-components, sum all y-components) to get final positions.
- Use Pythagoras for straight-line distances and sign of components to determine direction (NE/SE/NW/SW or cardinal).
- For facing questions, track turns sequentially (Step-by-step facing updates) rather than deducing from displacement.
- When multiple people move, align all results on the same coordinate system before comparing - draw a quick sketch if uncertain.
Step-by-Step Example
Question
A walks 5 m North then 4 m East. B walks 3 m East then 6 m North. C walks 6 m North then 1 m East. Who is farthest from the starting point?
Solution
Step 1: Set a coordinate system
Let the starting point be (0,0). Use (x, y) with East = +x and North = +y.Step 2: Convert A’s movements to coordinates
A: 5 m North → y = +5; then 4 m East → x = +4. Final A = (4, 5).Step 3: Convert B’s movements to coordinates
B: 3 m East → x = +3; then 6 m North → y = +6. Final B = (3, 6).Step 4: Convert C’s movements to coordinates
C: 6 m North → y = +6; then 1 m East → x = +1. Final C = (1, 6).Step 5: Compute straight-line distances from origin
A distance = √(4² + 5²) = √(16 + 25) = √41 ≈ 6.40.
B distance = √(3² + 6²) = √(9 + 36) = √45 ≈ 6.71.
C distance = √(1² + 6²) = √(1 + 36) = √37 ≈ 6.08.Step 6: Compare distances
B (≈6.71) > A (≈6.40) > C (≈6.08). So B is farthest from the start.Final Answer:
B is farthest from the starting point.Quick Check:
B has the largest y-component (6) and decent x (3), giving largest hypotenuse → B ✅
Quick Variations
1. Compare who is to the left/right of another after movements (use relative vectors).
2. Determine final facing when different persons follow turn sequences instead of straight moves.
3. Mixed problems: some people move, others turn - combine displacement + facing logic.
4. Problems that ask for who crosses paths or who meets whom - solve by equating parametric positions if timings are given.
Trick to Always Use
- Step 1: Convert each person’s movement into (Δx, Δy) immediately.
- Step 2: Sum components and compute distances with √(Δx² + Δy²) only once per person.
- Step 3: For comparisons, you can compare squared distances (Δx² + Δy²) to avoid square roots.
Summary
Summary
- Convert each person’s movement into coordinate components (Δx, Δy).
- Add all x- and y-components to find each person’s final position.
- Use √(Δx² + Δy²) or compare squared distances to identify who is farthest.
- Draw a quick sketch to visualize relative positions and confirm direction logic.
Example to remember:
A: (4, 5), B: (3, 6), C: (1, 6) → B is farthest (largest √(Δx² + Δy²)).
