Episode 8 — Aptitude and Reasoning / 8.20 — Direction Sense
8.20.b Tips, Tricks, and Shortcuts -- Direction Sense
Tip 1: Always Draw the Master Direction Diagram First
Before solving ANY direction sense problem, draw this diagram in the corner of your rough sheet:
N
|
|
W -------+------- E
|
|
S
This is your compass. Every movement in the problem should be plotted relative to this.
Tip 2: The "Walk and Draw" Method (Most Reliable)
Step-by-step:
- Mark the starting point on your paper.
- Read each sentence one at a time.
- Draw the movement as an arrow in the correct direction with the distance labeled.
- After all movements are drawn, identify the final position.
- Use Pythagoras if needed for shortest distance.
Example Walkthrough
"Ram walks 4 km North, turns right, walks 3 km, turns right, walks 4 km. How far is he from the starting point?"
Step 1: Draw starting point A.
Step 2: 4 km North -> mark point B.
Step 3: Turns right (from North, right = East) -> walks 3 km East -> mark point C.
Step 4: Turns right (from East, right = South) -> walks 4 km South -> mark point D.
B -------3 km-------> C
| |
4 km (North) 4 km (South)
| |
A D
Net N-S: 4 up - 4 down = 0
Net E-W: 3 right = 3 km
Distance from A to D = 3 km (due East)
Tip 3: Quick Turn Reference (Memorize This)
Right Turns (Clockwise):
N --right--> E --right--> S --right--> W --right--> N
Left Turns (Counter-clockwise):
N --left--> W --left--> S --left--> E --left--> N
Quick Memory Aid:
- Right turn: Think of a clock -- next direction clockwise
- Left turn: Go backwards on the clock
- About turn: Opposite direction
Tip 4: The Coordinate Method for Complex Problems
When there are 4+ turns, use coordinates instead of drawing:
| Direction | X change | Y change |
|---|---|---|
| North | 0 | +d |
| South | 0 | -d |
| East | +d | 0 |
| West | -d | 0 |
| NE | +d/sqrt(2) | +d/sqrt(2) |
| NW | -d/sqrt(2) | +d/sqrt(2) |
| SE | +d/sqrt(2) | -d/sqrt(2) |
| SW | -d/sqrt(2) | -d/sqrt(2) |
Procedure:
- Start at (0, 0)
- For each movement, add the appropriate X and Y changes
- Final position gives you (X_net, Y_net)
- Distance from start = sqrt(X_net^2 + Y_net^2)
Tip 5: Shadow Trick -- "SELF" Method
Shadow is always on the opposite side of the sun.
For Morning (Sun in East):
Shadow = West side
Mnemonic: "Morning Shadow West" (MSW)
Person facing North:
- Sun (East) is on RIGHT
- Shadow (West) is on LEFT
For Evening (Sun in West):
Shadow = East side
Mnemonic: "Evening Shadow East" (ESE)
Person facing North:
- Sun (West) is on LEFT
- Shadow (East) is on RIGHT
Shortcut Table for Shadow Problems
| Shadow Position | Morning | Evening |
|---|---|---|
| In front | Face West | Face East |
| Behind | Face East | Face West |
| To Left | Face North | Face South |
| To Right | Face South | Face North |
Tip 6: "Return Journey" Shortcut
When a person takes a series of turns and walks back partially:
-
Cancel out opposite movements:
- North cancels South
- East cancels West
-
Calculate net displacement in each axis.
Example:
5 km North, 3 km East, 2 km South, 1 km West
Net N-S = 5 - 2 = 3 km North
Net E-W = 3 - 1 = 2 km East
Shortest distance = sqrt(3^2 + 2^2) = sqrt(13) km
Direction from start = North-East
Tip 7: Recognizing Common Path Shapes
L-Shape (One Turn)
| Pythagoras directly: sqrt(a^2 + b^2)
a
|
+----b----
U-Shape (Two Turns, Same Direction)
| |
a a Net horizontal = b
| | Net vertical = 0
+----b-----+ Distance = b
Z-Shape (Two Turns, Alternate Directions)
----c----+
|
b
|
+----a----
Horizontal: a - c (if same direction) or a + c (if opposite)
Vertical: b
Then apply Pythagoras
Square Path (Back to Start)
+----+
| | After 4 equal turns = back at start
| | Distance from start = 0
+----+
Tip 8: "Facing Direction After Multiple Turns" Shortcut
Instead of tracing each turn, count the net turn:
- Each right turn = +90 degrees
- Each left turn = -90 degrees
- Each about turn = +180 degrees (or -180)
Calculate: Net rotation = Sum of all turns
Then find: Final direction from the starting facing direction.
Example:
Facing North. Turns: Right, Right, Left, Right, About turn.
Net = +90 + 90 - 90 + 90 + 180 = +360 degrees
360 mod 360 = 0 degrees
Final facing = North (same as start!)
Tip 9: "From" and "To" -- Quick Decode
| Statement | Meaning |
|---|---|
| A is to the North of B | Standing at B, look North to see A |
| A is to the East of B | Standing at B, look East to see A |
| B is to the South of A | Standing at A, look South to see B (same as A is North of B) |
Shortcut:
"X is to the ___ of Y" = Put yourself at Y, direction points to X.
Tip 10: Common Exam Traps and How to Avoid Them
Trap 1: "Turns to his left" vs. "Goes to the left"
- "Turns to his left" = changes facing direction 90 degrees left, then may or may not walk.
- "Goes to the left" = walks in the direction that is to his current left.
- Usually, both mean the same in exam questions, but read carefully.
Trap 2: "Starts walking towards East" vs. "Faces East"
- "Starts walking towards East" = both faces AND moves East.
- "Faces East" = only faces East, no movement until stated.
Trap 3: Confusing "from starting point" with "from last position"
- "How far from the starting point?" = Distance from the very first position.
- "How far from the last turn?" = Distance from the most recent turn point.
Trap 4: The diagonal distance trap
- If someone walks NE for 10 km, they are NOT 10 km North and 10 km East.
- They are 10/sqrt(2) ~ 7.07 km in each direction.
Tip 11: Speed Strategy for Exams
| Problem Type | Recommended Time | Method |
|---|---|---|
| Simple 2-3 turns | 30-45 seconds | Mental visualization |
| 4-5 turns with distance | 60-90 seconds | Quick sketch |
| Complex 6+ turns | 90-120 seconds | Coordinate method |
| Shadow problems | 30-45 seconds | SELF method |
| "Direction of X from Y" | 20-30 seconds | Direct diagram |
Speed Tip:
Practice drawing direction diagrams quickly. In exams, a 5-second diagram saves 30+ seconds of mental confusion.
Previous: 8.20.a Concepts and Formulas | Next: 8.20.c Solved Examples