Direction Sense –Quick Revision Notes
(Tailored for JKSSB Social Forestry Worker – Basic Reasoning Paper)
1. Why Direction Sense Matters
- Appears in ≈ 10‑15 % of the reasoning section.
- Tests spatial awareness, ability to follow instructions, and quick calculation of distances.
- Mastery saves time – most questions can be solved in < 30 seconds once the routine is internalised.
2. Core Concepts at a Glance
| Concept | Symbol / Notation | Meaning | Typical Use |
|---|---|---|---|
| Cardinal Directions | N, S, E, W | North, South, East, West | Base reference |
| Inter‑cardinal (Ordinal) Directions | NE, NW, SE, SW | 45° between two cardinals | Fine‑grained turns |
| Bearing | θ° (measured clockwise from North) | 0° = N, 90° = E, 180° = S, 270° = W | Precise direction |
| Turn | L / R | Left = 90° anti‑clockwise, Right = 90° clockwise | Change of facing |
| U‑Turn | 180° | Reverse direction | Often appears in “go back” statements |
| Step / Unit | 1 unit = given distance (m, km, steps…) | Length of each move | Building the path |
| Displacement | Straight‑line vector from start to end | Shortest distance (ignores path) | Final‑answer calculation |
| Manhattan Distance | Sum of absolute horizontal & vertical moves | When only axis‑aligned moves are allowed |
3. Direction Reference Table
| Direction | Abbrev. | Angle from N (°) | Quadrant (if using xy‑plane) |
|---|---|---|---|
| North | N | 0° (or 360°) | +Y |
| North‑East | NE | 45° | +X,+Y |
| East | E | 90° | +X |
| South‑East | SE | 135° | +X,‑Y |
| South | S | 180° | ‑Y |
| South‑West | SW | 225° | ‑X,‑Y |
| West | W | 270° | ‑X |
| North‑West | NW | 315° | ‑X,+Y |
Tip: Visualise a clock face with 12 = N, 3 = E, 6 = S, 9 = W.
4. Mnemonics to Remember Order
| Mnemonic | What It Helps Recall |
|---|---|
| Never Eat Soggy Waffles | N → E → S → W (clockwise) |
| All Students Take Calculus | Quadrant signs for trigonometry (useful if you ever need to convert bearing to x‑y): Quadrant I (0‑90°): All (+,+) II (90‑180°): Sin (+) → (‑,+) III (180‑270°): Tan (+) → (‑,‑) IV (270‑360°): Cos (+) → (+,‑) |
| Left‑Hand Rule | Hold your left hand out, thumb points forward (direction you’re facing). Fingers curl → direction of a left turn (anti‑clockwise). |
| Right‑Hand Rule | Same with right hand → right turn (clockwise). |
5. Standard Procedure for Solving a Direction‑Sense Question
- Read the entire statement – note every instruction (move, turn, distance).
- Choose a reference frame – usually put the starting point at origin (0,0) and face North unless stated otherwise.
- Translate each instruction into a vector:
- Move d units in current facing → add/subtract to x or y accordingly.
- Turn left/right → update facing by ±90°.
- U‑turn → add 180° to facing. 4. Maintain a running log (optional but helpful):
| Step | Action | Facing (°) | Δx | Δy | Cumulative (x,y) |
|---|---|---|---|---|---|
| 0 | Start | 0 (N) | 0 | 0 | (0,0) |
| 1 | … | … | … | … | … |
| … | … | … | … | … | … |
- After the last move, read final coordinates (x_f , y_f). 6. Compute the answer:
- Direction from start → use bearing formula:
\[
\theta = \operatorname{atan2}(y_f,\,x_f) \quad\text{(result in radians, convert to degrees)}\\
\text{If }\theta<0\text{ add }360° \]
Then map θ to nearest cardinal/inter‑cardinal (or give exact bearing).
- Shortest distance → Euclidean:
\[
d_{\text{min}} = \sqrt{x_f^{2}+y_f^{2}}
\]
- Total distance travelled → sum of all step lengths (if asked).
- Check units – ensure all distances are in the same unit (convert km↔m if needed).
6. Quick‑Reference Formulas
| Situation | Formula | Remarks | ||
|---|---|---|---|---|
| Convert bearing to x‑y increment (move d units at bearing θ) | Δx = d·sinθ Δy = d·cosθ |
θ measured clockwise from North; use sin for East‑West, cos for North‑South. | ||
| Find bearing from Δx,Δy | θ = atan2(Δx, Δy) (note order: x first, then y) | Convert rad→deg: θ° = θ·180/π. If negative, add 360°. | ||
| Left turn | New facing = (Old facing – 90°) mod 360° | Mod 360° keeps angle in [0,360). | ||
| Right turn | New facing = (Old facing + 90°) mod 360° | |||
| U‑turn | New facing = (Old facing + 180°) mod 360° | |||
| Manhattan distance | x | + | y | Useful when only axis‑movement is allowed. |
| Pythagoras shortcut | For a right‑triangle with legs a,b → hypotenuse = √(a²+b²) | Memorise common triples: (3,4,5), (5,12,13), (6,8,10), (7,24,25). |
7. Common Question Types & Solving Tricks
| Type | Typical Prompt | Shortcut / Trick |
|---|---|---|
| Final Direction Only | “After the moves, which direction is he facing?” | Track only facing; ignore distances. |
| Final Position (Direction + Distance) | “How far and in which direction is he from the start?” | Compute (x,y) → bearing + Euclidean distance. |
| Minimum Distance to Reach a Point | “What is the shortest distance he must walk to reach point P?” | Often a direct Pythagoras; if obstacles → consider reflecting point across walls (mirror method). |
| Number of Turns | “How many times did he turn left?” | Count L/R instructions; U‑turn counts as two 90° turns. |
| Reverse‑Engineer Start | “If he ends up facing North after these moves, which direction did he start?” | Work backwards: reverse each instruction (opposite turn, opposite move). |
| Path with Obstacles | “He cannot go through a pond located at …” | Treat obstacle as a blocked coordinate; may need to detour → break into sub‑paths. |
| Multiple Persons | “A and B start from same point, follow different instructions. Who is farther?” | Compute each displacement separately, compare magnitudes. |
8. Worked Examples (Illustrative)
Example 1 – Simple Sequence
A person starts walking North for 20 m, turns right and walks 15 m, then turns left and walks 10 m. Find his final direction and distance from the start.
Solution steps
| Step | Action | Facing (°) | Δx | Δy | Cum (x,y) |
|---|---|---|---|---|---|
| 0 | Start | 0 (N) | 0 | 0 | (0,0) |
| 1 | 20 m N | 0 | 0 | +20 | (0,20) |
| 2 | Turn R → face E (90°) | 90 | |||
| 3 | 15 m E | 90 | +15 | 0 | (15,20) |
| 4 | Turn L → face N (0°) | 0 | |||
| 5 | 10 m N | 0 | 0 | +10 | (15,30) |
- Final coordinates: (15 m E, 30 m N).
- Bearing: θ = atan2(15,30) = 26.565° ≈ 27° (just east of north) → direction NNE (or 27° bearing).
- Shortest distance: √(15²+30²)=√(225+900)=√1125≈33.54 m. Answer: He is about 33.5 m away in the NNE direction (≈27° bearing).
Example 2 – U‑Turn & Mixed Turns
Starting from point O, a worker walks 12 km towards West, then takes a U‑turn, walks 8 km, turns left, walks 6 km, turns right, walks 4 km. Find his displacement from O.
Solution
| Step | Action | Facing (°) | Δx | Δy | Cum (x,y) |
|---|---|---|---|---|---|
| 0 | Start | 0 (N) | 0 | 0 | (0,0) |
| 1 | 12 m W | Turn to face W (270°) → actually initial facing N, but we first turn? The statement says walks West → implies he first turns West (left) then walks. Let’s treat as: turn left to W (270°), walk 12 m. | |||
| Turn L → face W (270°) | 270 | ||||
| Walk 12 m W | 270 | -12 | 0 | (-12,0) | |
| 2 | U‑turn → face E (90°) | (270+180)mod360=90 | |||
| Walk 8 m E | 90 | +8 | 0 | (-4,0) | |
| 3 | Turn L → face N (0°) | (90-90)=0 | |||
| Walk 6 m N | 0 | 0 | +6 | (-4,6) | |
| 4 | Turn R → face E (90°) | (0+90)=90 | |||
| Walk 4 m E | 90 | +4 | 0 | (0,6) |
- Final position: (0,6) → 6 m north of origin.
- Displacement = 6 m (directly North).
Answer: He is 6 m north of the starting point.
Example 3 – Mirror Method (Obstacle)
A person must go from point A (0,0) to point B (8,6) but cannot cross a rectangular pond occupying the region 3≤x≤5, 2≤y≤4. Find the shortest walking distance if he can only walk along grid lines (Manhattan movement).
Solution Sketch
- Direct Manhattan distance = |8|+|6| = 14 units.
- Direct path would cross the pond (the line x=4, y=3 lies inside).
- Use “detour around” idea: go either above or below the pond.
Option 1 – Go above (y≥5)
- From (0,0) to (0,5): 5 up
- Then to (8,5): 8 right
- Then down to (8,6): 1 up
- Total = 5+8+1 = 14 (same as direct, but avoids pond because we stayed at y=5 >4).
Option 2 – Go below (y≤1) – (0,0) to (0,1): 1 up
- to (8,1): 8 right
- to (8,6): 5 up
- Total = 1+8+5 = 14 again.
Both give 14 → pond does not force extra distance because we can route around without extra steps.
Answer: Minimum distance = 14 units (any of the above routes).
9. Key Highlights – One‑Page Cheat Sheet
- Directions & Angles
- N = 0°/360°, E = 90°, S = 180°, W = 270°.
- NE = 45°, SE = 135°, SW = 225°, NW = 315°.
- Turn Rules
- Left = –90° (anti‑clockwise).
- Right = +90° (clockwise).
- U‑turn = ±180°.
- Coordinate Update (facing θ, distance d)
- Δx = d·sinθ
- Δy = d·cosθ
- Finding Bearing from Δx,Δy
- θ = atan2(Δx,Δy) → convert to degrees → add 360° if negative.
- Distance
- Euclidean: √(x²+y²)
- Manhattan: |x|+|y| (use only when movement restricted to axes).
- Common Triples (speed‑up)
- (3,4,5), (5,12,13), (6,8,10), (7,24,25) – multiply/divide as needed.
- Problem‑Solving Flow
- Draw a quick sketch (origin, N up).
- List each instruction in a table (facing, Δx,Δy).
- Sum displacements.
- Convert final (x,y) → bearing + distance.
- Verify units & plausibility (distance ≤ sum of individual steps).
- Exam‑Tip
- If the question only asks final direction, you can ignore distances entirely – just track the turning sequence.
- If only distance is asked, you may ignore direction and compute net east‑west and north‑south components separately. —
10. Practice Mini‑Set (Solve in <2 min each) | Q | Instructions | Asked | Answer (quick) |
| — | ————– | ——- | —————- |
| 1 | Start N, 10 m, R, 5 m, L, 8 m, R, 6 m | Final direction? | East |
| 2 | Start facing East, 7 km, L, 4 km, L, 9 km, R, 3 km | Distance from start? | √((7‑9)²+(4+3)²)=√(4+49)=√53≈7.28 km |
| 3 | From point P, go 12 m SW, then 5 m NW, then 10 m SE. | Net displacement (direction)? | Compute components: SW→(−12/√2,−12/√2); NW→(−5/√2,+5/√2); SE→(+10/√2,−10/√2). Sum x≈(−12‑5+10)/√2=−7/√2≈−4.95 m, y≈(−12+5‑10)/√2=−17/√2≈−12.02 m → bearing ≈ atan2(−4.95,−12.02)≈201° → SSW (≈201°). |
| 4 | A person walks 15 m north, turns left, walks 20 m, turns right, walks 15 m, turns left, walks 10 m. | Shortest distance to start? | Net x: left from north → west (−20), right → north (0), left → west (−10) → total x = −30 m. Net y: +15 +0 +15 +10 = +40 m. Distance = √(30²+40²)=50 m. |
| 5 | Starting at (0,0), face East, move 12 units, turn left, move 5 units, turn left, move 12 units, turn left, move 5 units. | Where do you end? | You trace a rectangle → back to start (0,0). |
Try solving these without writing a full table – just keep a running mental note of east‑west and north‑south totals.
11. Final Revision Checklist (5‑minute read‑through)
- [ ] Know the 8‑point compass and their angles.
- [ ] Remember left = –90°, right = +90°, U‑turn = ±180°. – [ ] Can convert a bearing to x‑y increments (Δx = d·sinθ, Δy = d·cosθ). – [ ] Can recover bearing from net displacement (atan2).
- [ ] Have the Pythagorean triples at fingertips for quick distance checks.
- [ ] Practice separating direction‑only vs distance‑only vs both. – [ ] Use a mini‑table for each question if time permits; otherwise, track net E‑W and N‑S totals mentally. – [ ] Verify answer: distance cannot exceed sum of individual step lengths; direction should be plausible relative to the turn pattern.
You’re now equipped with a full direction‑sense toolkit.
Run through the cheat sheet, solve a couple of practice sets, and you’ll breeze through the reasoning section of the JKSSB Social Forestry Worker exam. Good luck!