Relative Position Movement
Relative Position Movement problems involve tracking a person's position after a sequence of movements in different directions. You must determine both the straight-line distance and the direction of the final point relative to the starting point. These problems use coordinate geometry and vector addition.
What You'll Learn
Introduction to Relative Position Movement
Relative Position Movement problems involve tracking a person's position after a sequence of movements in different directions. You must determine both the straight-line distance and the direction of the final point relative to the starting point. These problems use coordinate geometry and vector addition.
Prerequisites
How to Solve Relative Position Movement Problems
Step 1: Set starting point as origin (0,0)
Step 2: For each movement, update coordinates: East (+x), West (-x), North (+y), South (-y)
Step 3: Calculate final coordinates (x, y)
Step 4: Distance = √(x² + y²)
Step 5: Determine direction: if x>0 and y>0 → Northeast; x>0,y<0 → Southeast; etc.
Step 6: For exact direction, calculate angle = arctan(|y/x|) from East or North
Step 7: Express answer as direction and distance
Example Problem
Example: A person walks 10 m East, then 5 m South, then 10 m West. What is his position relative to start? Solution: Step 1: Start (0,0) Step 2: 10 m East → (10, 0) Step 3: 5 m South → (10, -5) Step 4: 10 m West → (0, -5) Step 5: Final coordinates = (0, -5) Step 6: Distance = √(0² + (-5)²) = 5 m Step 7: Direction = South (directly south of start) Answer: 5 m South
Pro Tips & Tricks
- Keep a running total of x and y coordinates
- Draw a diagram to visualize the path
- If x = 0 and y > 0 → North; y < 0 → South
- If y = 0 and x > 0 → East; x < 0 → West
- If x > 0 and y > 0 → Northeast
- If x > 0 and y < 0 → Southeast
Shortcut Methods to Solve Faster
Common Mistakes to Avoid
Practice Worksheets
Practice makes perfect! Work through these worksheets to master Relative Position Movement. Each worksheet contains 20 questions with detailed explanations. Start from Worksheet 1 and progress through increasing difficulty levels.
Exam Importance
Relative Position Movement is an important topic for various competitive exams. Here's how frequently it appears:
Ready to Master Relative Position Movement?
Start with Worksheet 1 and work your way up to expert level! Each worksheet includes: