Direction Sense
Navigation using compass directions
Direction Sense tests your ability to navigate using cardinal directions (North, South, East, West) and their intercardinal directions (NE, NW, SE, SW). These problems involve tracking movement, calculating final positions, determining distances from starting points, and understanding left/right turns based on facing direction. Mastery of direction sense is essential for solving complex logical puzzles involving spatial reasoning.
Key Formulas / Rules
Key Concepts
Cardinal and Intercardinal Directions
The four cardinal directions are North (N), South (S), East (E), and West (W). The intercardinal directions are Northeast (NE), Northwest (NW), Southeast (SE), and Southwest (SW). North and South are opposite; East and West are opposite. In direction sense problems, movements are typically described using these eight directions. Remember that directions are relative to your current facing direction, not absolute.
Left and Right Turns
Left and right depend on which direction you are facing. If facing North: left is West, right is East. If facing South: left is East, right is West. If facing East: left is North, right is South. If facing West: left is South, right is North. A useful mnemonic: after turning right, you face the next direction clockwise; after turning left, you face the next direction anticlockwise. Always track your current facing direction after each turn.
Calculating Final Position
To find final position from a series of movements: (1) Start at origin (0,0) facing the given initial direction, (2) Assign coordinates: North (+y), South (-y), East (+x), West (-x), (3) Add/subtract distances based on movements, (4) Final coordinates show displacement from start. For diagonal movements (NE, NW, SE, SW), both x and y change by the same amount. Example: Moving 10m NE means +10/sqrt2 in both x and y (approximately 7.07m each).
Distance from Starting Point
The shortest distance from starting point uses the Pythagorean theorem: distance = sqrt(x^2 + y^2), where x is total East-West displacement and y is total North-South displacement. If final position is (a,b), distance = sqrt(a^2 + b^2). Direction from start to finish is determined by the signs of x and y: (+,+)=NE, (-,+)=NW, (-,-)=SW, (+,-)=SE. This assumes standard Cartesian coordinates with East as positive x and North as positive y.
Shadow and Sun Position Problems
Shadow problems connect time of day with direction. In the Northern hemisphere: (1) Sunrise (morning): Sun in East, shadow towards West, (2) Noon: Sun overhead (South in tropics, varying by latitude), shadow minimal or towards North, (3) Sunset (evening): Sun in West, shadow towards East. A person's shadow indicates the opposite direction of the sun. If someone faces the direction of their shadow at morning, they face West.
Complex Movement Patterns
For multi-step problems: Track current position (x,y) and current facing direction separately. After each movement segment, update position. After each turn, update facing direction without changing position. Common patterns include: rectangular paths (return to start), spiral paths, backtracking, and figure-eight patterns. For 'return to start' problems, the sum of all North-South movements must equal zero, and sum of all East-West movements must equal zero.
Solved Examples
Problem 1:
A person walks 10m North, then 10m East, then 10m South, then 10m West. How far is he from the starting point and in which direction?
Solution:
Step 1: Set starting point as (0, 0). North = +y, East = +x, South = -y, West = -x.
Step 2: After 10m North: position = (0, 10).
Step 3: After 10m East: position = (10, 10).
Step 4: After 10m South: position = (10, 0).
Step 5: After 10m West: position = (0, 0).
Step 6: Final position (0, 0) equals starting position.
Answer: The person is 0m from the starting point (back at start). This forms a square path.
Problem 2:
Ravi walks 5m towards East, turns left and walks 4m, then turns left again and walks 5m. How far is he from his starting point and in which direction?
Solution:
Step 1: Start at (0, 0) facing East.
Step 2: Walk 5m East: position = (5, 0), still facing East.
Step 3: Turn left (from East, left = North): now facing North.
Step 4: Walk 4m North: position = (5, 4), facing North.
Step 5: Turn left (from North, left = West): now facing West.
Step 6: Walk 5m West: position = (0, 4), facing West.
Step 7: Final position is (0, 4), starting was (0, 0).
Step 8: Distance = sqrt(0^2 + 4^2) = sqrt16 = 4m.
Step 9: Direction from (0,0) to (0,4) is North (positive y only).
Answer: Ravi is 4m from starting point towards North.
Problem 3:
A man faces North. He turns 135 deg clockwise and then 180 deg anticlockwise. Which direction is he facing now?
Solution:
Step 1: Initial facing direction: North.
Step 2: 135 deg clockwise from North: 90 deg takes him to East, remaining 45 deg takes him to between East and South (southeast direction, 45 deg south of East).
Step 3: Now facing Southeast (135 deg from North, measured clockwise).
Step 4: 180 deg anticlockwise from Southeast: this is equivalent to facing opposite direction.
Step 5: 180 deg turn from any direction faces the exact opposite.
Step 6: Opposite of Southeast is Northwest.
Answer: The man is facing Northwest.
Problem 4:
At sunrise, two friends A and B are standing in a park. A's shadow falls exactly on B. If B is to the right of A, which direction is A facing?
Solution:
Step 1: At sunrise, sun rises in the East.
Step 2: Shadows fall opposite to the sun, so at sunrise, shadows fall towards West.
Step 3: A's shadow falls on B, so B is in the direction of A's shadow.
Step 4: Therefore, B is to the West of A (since shadow is towards West).
Step 5: Given that B is to the RIGHT of A.
Step 6: If B (West) is to A's right, then A must be facing South.
Step 7: Verification: When facing South, right hand points West. B is West of A, so B is to A's right.
Answer: A is facing South.
Tips & Strategies
- Always draw a rough diagram with coordinate axes - visual representation prevents errors in complex multi-turn problems.
- Use the clock-wise rule: N->E->S->W->N for right turns, and reverse for left turns. This is faster than memorizing all combinations.
- For distance calculation, only consider net displacement (final minus initial), not total distance walked.
- In shadow problems, remember: Shadow direction = Opposite of Sun direction. Morning = East sun = West shadow.
- When turning 'back' or 180 deg, you're simply facing the opposite direction - no need to overthink left/right.
- For 'return to starting point' verification: sum of all North movements must equal sum of all South movements, and East equals West.
- If a person faces the direction of their own shadow at evening time, they face East (shadow is East at sunset).
Ready to practice?
Test your understanding with questions and get instant feedback.