Direction sense is one of those topics where students lose marks not because the concept is hard, but because they skip drawing the diagram and try to hold the whole path in their heads. That almost always ends badly. The concept itself is straightforward: you track a person's movement across a 2D plane (like a map) and calculate either the final direction they face, or the straight-line distance between two points.
The base system uses four cardinal directions — North (N), South (S), East (E), West (W) — and four inter-cardinal directions — NE, NW, SE, SW. When you're standing and facing North:
Think of it like the compass on a phone's map app. You start at a dot, move in one direction, then another, and the question asks: what is the straight-line distance back to the starting dot? That shortest path home is what "displacement" means here — not the total distance walked, but the crow-flies distance.
The analogy that works best: imagine you're walking around a rectangular village. You might walk 2 km South, 3 km East, 2 km North — you've walked 7 km total, but you're only 3 km away from where you started (due East). Your displacement is 3 km. The path you took doesn't matter for the final answer; only where you ended up matters.
Three types of problems appear in IBPS RRB:
A neat rule of thumb: in displacement problems, cancel out opposite directions first (North cancels South, East cancels West), then use Pythagoras on whatever remains. Most questions are designed to give you a clean 3-4-5 or 6-8-10 right triangle so the arithmetic stays fast.
Stop thinking of directions as abstract labels. Assign a coordinate system: North = +Y, South = −Y, East = +X, West = −X. Every movement becomes a signed number on one axis. Add up all X-movements separately and all Y-movements separately. Your displacement is √(X² + Y²).
This is the single most reliable method. It converts a visual problem into arithmetic, which means no diagram errors.
Example: Walk 10 km S, 6 km E, 10 km N, 3 km W.
√(0² + 3²) = 3 kmDone. No diagram needed for simple cases.
When a person changes direction, you need to track their new facing direction, not just a single cardinal point.
The clockwise sequence is: N → E → S → W → N. Memorise this ring. Right = clockwise, left = anticlockwise on this ring.
When you see "turned left and walked 30m" — you must first know which direction the person was facing, then rotate on the ring, then apply the movement to the correct axis.
Once you have net horizontal and vertical displacements, the distance is:
d = √(horizontal² + vertical²)
The exam almost always sets up Pythagorean triples to avoid messy surds:
When you see two components left after cancellation, check immediately if they form one of these triples. If yes, you can write the answer without computing the square root — saves 20+ seconds.
Some problems rotate the entire compass system. The approach: figure out how many degrees of rotation occurred, then apply the same rotation to the target direction.
Use degree markers to make this mechanical:
If SE (135°) becomes N (0°), the rotation is −135° (anticlockwise by 135°). Apply the same rotation to any other direction:
This method works even when the question gives you a shift that's not a simple 90° or 180° — just find the delta and apply it.
The Sun rises in the East and sets in the West. The shadow always falls opposite to the Sun's direction. That's the only rule you need.
| Time of Day | Sun's Position | Shadow Direction | |-------------|---------------|-----------------| | Morning | East | West | | Afternoon | West | East (roughly) | | Noon | South (in India) | North |
If a problem tells you the shadow direction, the Sun is in the exactly opposite direction. If the shadow falls NE, the Sun is SW.
Note: When the problem says "morning shadow" or "evening shadow," use the East/West inference above. When it just says "shadow falls towards X," invert X to get Sun position — no time-of-day reasoning needed.
"He turned left" and "he went left" look the same but the second phrase is ambiguous. Always read: turn left = rotate 90° anticlockwise from current facing direction. The movement after the turn is in the new direction. Track the facing direction at every step.
Before drawing anything, list all N/S movements and all E/W movements separately. Cancel opposites immediately. You'll often find one axis cancels to zero, leaving a trivial answer (no Pythagoras needed).
Example: 10S, 6E, 10N, 3W → Y: 10−10=0, X: 6−3=3 → answer is 3 km directly.
Standard method (diagram + measurement): ~90 seconds. This method: ~20 seconds. The savings compound when movements cancel cleanly.
After cancellation, check if your two remaining components match 3-4-5 or 6-8-10 or 5-12-13. If yes, write the hypotenuse directly from memory — skip the calculation entirely.
Micro-example: Net displacement 15m South and 20m East → recognise as 15-20-25 (3-4-5 scaled ×5) → answer 25m. No multiplication or square root needed.
Standard method (square both, add, root): 4 steps. Triple recognition: 1 step.
Write the sequence N-E-S-W in a clockwise ring mentally. Right turn = one step clockwise. Left turn = one step anticlockwise. Two right turns = 180° reversal.
Micro-example: Facing East, turn left twice → East → North (first left) → West (second left). Answer: facing West.
Standard method (draw compass, rotate): ~30 seconds. Clock ring: ~5 seconds once practiced.
Shadow is always the opposite of Sun. Memorise: shadow NE → Sun SW. Shadow N → Sun S (midday). Shadow W → Sun E (morning).
When a shadow question asks for Sun direction: read the shadow direction, find its opposite on the compass — that is your answer. No reasoning required, just inversion.
Shadow N means opposite = S. Shadow NW means opposite = SE. Apply in under 5 seconds vs. ~25 seconds for drawn-out reasoning.
When a question says "he turns towards his house," your job is to find the quadrant (NW, SW, SE, NE) of the house relative to the current position — not the cardinal direction.
The house is at origin (0,0). If current position is (+6, +8) meaning 6E and 8N of house, then to go home the person must move West (−X) and South (−Y) simultaneously → direction is South-West.
Rule: if you are in the +X,+Y quadrant, home is SW. In +X,−Y, home is NW. In −X,+Y, home is SE. In −X,−Y, home is NE.
This eliminates the need to draw a return path — just check which quadrant you're in.
In the exam hall, use this decision tree on every direction sense question:
Step 1 — Classify the question type.
Step 2 — For displacement problems: List all movements on two axes (N/S and E/W). Cancel opposites. Check for Pythagorean triple. Write answer.
Step 3 — For rotation problems: Convert directions to degrees (N=0, E=90, S=180, W=270, diagonals at 45° increments). Find the rotation delta from one given pair. Apply same delta to the unknown direction. Convert back to direction name.
Step 4 — For shadow problems: Shadow direction given → flip to opposite → that is the Sun's direction. Reverse also works if Sun's direction is given and shadow is asked.
Step 5 — Sanity check: Does the answer make geographical sense? A final displacement cannot exceed the sum of all distances walked. If your answer is larger, re-check cancellations.
Time budget: these questions should not take more than 60-90 seconds each. If you are past 90 seconds, mark and move — come back.
Why this question: Tests whether you can cancel out equal and opposite movements before calculating. The exam relies on students panicking and adding all distances instead of subtracting.
Solving path: Y-axis: −10 (South) + 10 (North) = 0. X-axis: +6 (East) − 3 (West) = +3. Displacement = √(0² + 3²) = 3 km. Net movement is purely East. Answer: 3 km.
Why this question: Tests the quadrant-to-home rule. Students get confused because "towards house" requires thinking about direction from current position back to origin, not the direction they were walking.
Solving path: Final position = 8 km North and 6 km East of house. House is at origin. Current position is in the +X, +Y quadrant. To reach origin, must go South (−Y) and West (−X) → South-West. Answer: South-West.
Why this question: Direction rotation with non-standard angles. This is harder than it looks. Students who try visual rotation of a drawn compass often make errors. Degree-arithmetic approach is safer.
Solving path: SE = 135°, it becomes N = 0°. Delta = 0 − 135 = −135° (anticlockwise by 135°). Verify: NE = 45°, 45 − 135 = −90° = 270° = W. Correct. Now apply to SW = 225°: 225 − 135 = 90° = E. Answer: East.
Why this question: Four-turn path with one trick — the final turn is back West, and students forget they already moved East in an earlier step. The answer is not zero even though the path looks like it might close.
Solving path: Start at P. 20m South (Y = −20). Turn left from South = facing East. 30m East (X = +30). Turn left from East = facing North. 20m North (Y = −20 + 20 = 0). Turn left from North = facing West. 20m West (X = 30 − 20 = +10). Final position: X = +10, Y = 0. Distance = 10 m. Answer: 10 m.
Why this question: A clean equal-and-opposite cancellation on one axis, leaving a pure one-axis displacement. Tests whether students recognise this immediately or laboriously compute Pythagoras on all three movements.
Solving path: X-axis: +3 (East) − 3 (West) = 0. Y-axis: +4 (North). Net = 4 km North. Displacement = 4 km. No Pythagoras needed at all. Answer: 4 km.
Why this question: Validates the coordinate-cancellation method under mild complexity — four movements with two pairs of opposites, but not fully cancelling.
Solving path: Y-axis: +20 (North) − 35 (South) = −15 (net South). X-axis: +30 (East) − 30 (West) = 0. Displacement = √(15² + 0²) = 15 m South. Answer: 15 m.
Why this question: Tests a conceptual trap — order of movements doesn't change final position. Students assume A and B must end up in different places because their paths look different on paper.
Solving path: A: 15 km North then 20 km East → final position (+20, +15). B: 20 km East then 15 km North → final position (+20, +15). Same endpoint. Distance between them = 0 km. Answer: 0 km.
Why this question: Tests the shadow-Sun inversion rule in its pure form. A student who has memorised the rule answers in under 10 seconds. Without it, they spend time reasoning about Sun position and often confuse themselves.
Solving path: Shadow falls NE. Sun is always opposite to shadow. NE opposite = SW. Answer: South-West.
Adding instead of cancelling: When 10 km South and 10 km North both appear, students sometimes add them (20 km total walked) and use that in Pythagoras. These are vectors, not scalars — they cancel. Only net displacement goes into the formula.
Confusing "turned right" with "went right": "Turned right" means the person rotated 90° clockwise from their current facing direction. If they were facing South and turned right, they now face West — not East (which would be "right" only if they were facing North). Always track the current facing direction first.
Shadow points toward the Sun: A very common reversal. The shadow points away from the Sun. Shadow is NE → Sun is SW, not NE. If you have even a moment of doubt, verify: at noon the Sun is approximately South (in India), so the shadow points North — opposite confirmed.
Forgetting intermediate turns when listing movements: In a four-step path problem, every "turn left" or "turn right" instruction changes the axis of the next movement. Students sometimes carry the previous direction forward one extra step. Mark the direction at every turn explicitly.
Assuming the path forms a closed loop: Just because the question has multiple turns does not mean the person ends up back at the start. Check both axes independently before concluding displacement is zero.
Rotation problems: applying the wrong sign: When directions rotate anticlockwise, you subtract the delta. When clockwise, you add. Confusing the two gives the diametrically opposite answer — which is usually one of the distractor options. Always verify your rotation direction with the given examples before applying to the unknown.