Episode 8 — Aptitude and Reasoning / 8.20 — Direction Sense

8.20.a Concepts and Formulas -- Direction Sense

1. The Eight Directions

There are 4 cardinal and 4 intercardinal (ordinal) directions:

                    N (North)
                    |
                    |
     NW  -----------+----------- NE
    (North-West)    |         (North-East)
                    |
  W ----------------+---------------- E
(West)              |              (East)
                    |
     SW  -----------+----------- SE
    (South-West)    |         (South-East)
                    |
                    S (South)

Key Points

  • North and South are opposite directions.
  • East and West are opposite directions.
  • NE and SW are opposite; NW and SE are opposite.
  • The angle between any two adjacent cardinal directions is 90 degrees.
  • The angle between a cardinal and its adjacent intercardinal direction is 45 degrees.

2. Left and Right Turns from Each Direction

Fundamental Rule

  • Right turn = Clockwise rotation by 90 degrees
  • Left turn = Counter-clockwise rotation by 90 degrees
  • About turn / U-turn = Rotation by 180 degrees (reverse direction)

Complete Turn Table

Facing DirectionTurn Right (90 deg CW)Turn Left (90 deg CCW)About Turn (180 deg)
NorthEastWestSouth
EastSouthNorthWest
SouthWestEastNorth
WestNorthSouthEast
NESENWSW
SESWNENW
SWNWSENE
NWNESWSE

Mnemonic: "NEWS Clockwise"

Think of the directions going clockwise: N -> E -> S -> W -> N

  • Turning right = next direction in the clockwise sequence
  • Turning left = previous direction (or next in counter-clockwise: N -> W -> S -> E)

3. Clockwise Direction Sequence

         N
       /   \
     NW     NE
     |       |
     W       E       Clockwise: N -> NE -> E -> SE -> S -> SW -> W -> NW -> N
     |       |
     SW     SE
       \   /
         S

45-degree turns (clockwise): N -> NE -> E -> SE -> S -> SW -> W -> NW -> N

90-degree turns (clockwise): N -> E -> S -> W -> N


4. Distance vs. Displacement

Distance (Total Path Length)

  • The sum of all individual distances traveled along the path.
  • Always a scalar (just a number, no direction).
  • Distance >= Displacement (always).

Displacement (Shortest Distance)

  • The straight-line distance from the starting point to the ending point.
  • It is a vector (has both magnitude and direction).

Example

  A ----3 km----> B
                  |
                  4 km
                  |
                  v
                  C

  Distance traveled = 3 + 4 = 7 km
  Displacement (AC) = sqrt(3^2 + 4^2) = sqrt(9 + 16) = sqrt(25) = 5 km

5. Pythagoras Theorem for Shortest Distance

When a person walks in two perpendicular directions, the shortest distance back to the start is found using the Pythagorean theorem:

  Shortest Distance = sqrt(a^2 + b^2)

Where a and b are the perpendicular distances walked.

General Right-Angle Path

  Start ---a--- Turn Point
                     |
                     b
                     |
                    End

  Shortest distance (Start to End) = sqrt(a^2 + b^2)

Multiple Turns (L-shaped, U-shaped, Z-shaped paths)

For complex paths, reduce the net displacement in the North-South direction and East-West direction separately, then apply Pythagoras.

Step-by-step approach:

  1. Set up a coordinate system: North = +Y, East = +X, South = -Y, West = -X
  2. Calculate total displacement in X (East-West) direction
  3. Calculate total displacement in Y (North-South) direction
  4. Apply: Shortest Distance = sqrt(X^2 + Y^2)

Example: Multi-Turn Path

  A person walks 3 km North, then 4 km East, then 3 km South.

       B -------4 km-------> C
       |                      |
     3 km                   3 km
       |                      |
       A                      D

  Net North-South displacement = 3 - 3 = 0 km
  Net East-West displacement = 4 km

  Shortest distance A to D = sqrt(0^2 + 4^2) = 4 km

6. Shadow-Based Direction Problems

Sunrise and Sunset Fundamentals

Time of DaySun PositionShadow Falls
Morning / SunriseEastWest (opposite to sun)
Evening / SunsetWestEast (opposite to sun)
Noon (12 PM)Directly overheadVery short / no shadow

Key Rule

Shadow always falls on the OPPOSITE side of the Sun.

Finding Facing Direction from Shadow

At Sunrise / Morning:

  • Sun is in the East
  • Shadow falls to the West
  • If your shadow is in front of you -> You face West
  • If your shadow is behind you -> You face East
  • If your shadow is to your left -> You face North
  • If your shadow is to your right -> You face South

At Sunset / Evening:

  • Sun is in the West
  • Shadow falls to the East
  • If your shadow is in front of you -> You face East
  • If your shadow is behind you -> You face West
  • If your shadow is to your left -> You face South
  • If your shadow is to your right -> You face North

Shadow Direction Summary Table

TimeSunShadowShadow in FrontShadow BehindShadow LeftShadow Right
MorningEastWestFace WestFace EastFace NorthFace South
EveningWestEastFace EastFace WestFace SouthFace North

7. Angle-Based Direction Problems

Sometimes questions give angle of rotation instead of "left" or "right":

Angle to Direction Mapping (Clockwise from North)

Angle (CW from N)Direction
0 degNorth
45 degNorth-East
90 degEast
135 degSouth-East
180 degSouth
225 degSouth-West
270 degWest
315 degNorth-West
360 degNorth (full circle)

Formula

  New Direction = (Current Angle + Rotation Angle) mod 360
  • Clockwise rotation: Add the angle
  • Counter-clockwise rotation: Subtract the angle (or add 360 - angle)

8. Direction of One Point with Respect to Another

To find the direction of point B from point A:

  1. Place yourself at point A
  2. Look toward point B
  3. The direction you look is "B is in ___ direction of A"

Important Distinction

  • "B is to the East of A" means: standing at A, B is toward East
  • "A is to the West of B" means the same thing
        N
        |
   W ---A--- E
        |
        S

   If B is here:     B is ___ of A
   
        B             North
        |
   -----A-----
   
   -----A-----
        |
        B             South

   B ---A-----        West

   -----A--- B        East

9. Coordinate Geometry Approach

For complex problems, assign coordinates:

  • Starting point = Origin (0, 0)
  • North = +Y axis
  • South = -Y axis
  • East = +X axis
  • West = -X axis

Example

  Start at (0, 0)
  Walk 5 km North  -> (0, 5)
  Walk 3 km East   -> (3, 5)
  Walk 2 km South  -> (3, 3)
  Walk 1 km West   -> (2, 3)

  Final position: (2, 3)
  Distance from start = sqrt(2^2 + 3^2) = sqrt(4 + 9) = sqrt(13) km

  Direction from start: tan(theta) = 2/3
  theta = arctan(2/3) ~ 33.7 degrees from North toward East
  => North-East direction (approximately)

10. Common Pythagorean Triplets

These appear frequently in direction sense problems:

abc = sqrt(a^2+b^2)
345
51213
6810
81517
72425
91215
94041
121620
152025

Memorize at least the first 5 triplets -- they cover 90% of exam questions.


11. Special Cases and Traps

Trap 1: "Started facing North" vs. "Started walking North"

  • "Facing North" means the person looks North but may not walk.
  • "Walking North" means actually moving northward.

Trap 2: Left/Right vs. North/South/East/West

  • Left and Right are relative to the person's facing direction.
  • N/S/E/W are absolute directions.

Trap 3: "From" vs. "To"

  • "Direction of A from B" = Standing at B, which direction is A?
  • "Direction of A to B" = Standing at A, which direction is B?

Trap 4: Intercardinal distance

  • Walking NE for d km does NOT add d km to both North and East.
  • It adds d/sqrt(2) to each: d * cos(45) = d * sin(45) = d / sqrt(2)

Next: 8.20.b Tips, Tricks, and Shortcuts