Seating arrangement problems give you a set of people and a set of positional constraints. Your job is to reconstruct exactly where everyone sits. That's it. The complexity comes from the fact that constraints interact — placing one person using clue 3 often unlocks clue 7, which unlocks clue 1. The skill is sequencing those clues correctly.
Think of it like assembling a jigsaw puzzle. Some pieces snap in immediately (anchor pieces). Others only fit once the anchor pieces are in place. In seating arrangements, the anchor clue is usually the one that fixes an absolute position — "P sits third from the left end" or "A sits opposite to B in a six-person hexagonal table". Everything else hangs off that anchor.
There are four main types you'll face in SBI PO:
Linear (single row): People sit in a straight line, facing either north or south (or sometimes left/right). "Left" and "right" are from the sitting person's perspective — not yours as the observer. This trips up many test-takers.
Circular: People sit around a circular table. "Left" and "right" are again from the person's own perspective. Critically, if they face the center (most common), their left is the observer's right and vice versa. If they face outward, the directions flip again.
Double row (parallel rows): Two rows of people facing each other. The person sitting opposite to you is across the rows. "Immediate left" in row 1 and "immediate left" in row 2 point in opposite directions if the rows face each other.
Hexagonal/Polygon: Less common but appears in SBI PO. The geometry of a hexagon means each person has exactly two adjacent seats and one seat directly opposite.
The analogy that works: treat each arrangement type as a coordinate system. Before you write a single letter, draw the skeleton — the chairs, the direction arrows, the "facing" indication. Five seconds of setup saves two minutes of confusion.
Place your anchor first. If the puzzle says "P sits third from the left end" with 6 people, write:
_ _ P _ _ _
Now find the next clue that references P directly. "Q sits second to the right of P" → Q goes to position 5:
_ _ P _ Q _
Continue filling. Clues referencing unknown neighbors ("R is not at any extreme end") are negative clues — don't use them to place anyone yet. Use them to eliminate options once you have 1-2 positions remaining.
Facing direction in linear puzzles: When people face north, their left is west (your left if you also face north). When people face south, their left is east. Always write "facing north" or "facing south" at the top of your diagram before starting.
Draw a circle with numbered positions (1 at the top, going clockwise). If 8 people sit around a table facing the center:
This is because when you face the center, the clockwise direction is to your right. Burn this into memory — reversing left/right is the single most common error in circular puzzles.
Opposite seats: In an even-numbered circular arrangement of n people, the person directly opposite sits n/2 positions away (clockwise or counter-clockwise — same result). For 8 people: opposite = 4 seats away. For 6 people: opposite = 3 seats away.
Counting chairs between two people: From chair a to chair b clockwise in a circle of n chairs, the number of chairs between them = (b - a - 1) if b > a, or (n - a + b - 1) if b < a. Do not count the chairs they are sitting on — only the chairs in between.
Draw both rows and label the direction each row faces. A common setup:
Row 1: → → → → (facing north, seated facing south? — read the puzzle carefully)
Row 2: ← ← ← ← (facing opposite direction)
The critical insight: "second to the right of L in Row 1" means you move rightward along Row 1's seating direction. But the person sitting opposite L is in Row 2, directly across. The positions in Row 2 are mirrored — Row 2's leftmost seat faces Row 1's rightmost seat.
Always number both rows from the same absolute direction (say, left to right as you draw it) and note that "opposite" means same position number across rows, but the facing direction determines whose "left" is whose "right."
A hexagonal table has 6 seats. Each seat is adjacent to 2 others and directly opposite to 1 other. With A opposite B, you immediately fill:
B
/ \
? ?
? ?
\ /
A
The two seats adjacent to A are also adjacent to B's neighbors. This geometry is fixed — use it to resolve "adjacent to both A and B" immediately (only 2 seats qualify).
When a puzzle says people sit in ascending/descending order of some attribute (height, age), treat it as a ranking problem first. Derive the order from comparative clues, then map that order onto positions.
For any circular arrangement where people face the center: clockwise direction = right of the seated person. Draw a small arrow on your circle at the start of every puzzle with "CW = R". This single habit eliminates direction confusion. Standard approach (re-reading the clue 3 times to confirm direction): ~30 seconds per clue. With this habit: 0 seconds of re-checking, roughly 8-10 clues × 30s = 4-5 minutes saved per puzzle set.
Identify all negative clues ("X is not adjacent to Y", "Z is not at any extreme end") before starting. Write them aside. Use positive clues to build the arrangement first, then apply negatives only to eliminate the final 1-2 ambiguous positions. Applying negatives too early forces you to track multiple conditional branches — a time trap. This reduces dead-end restarts from an average of 2-3 per puzzle to near zero. Saves 90-120 seconds per complex puzzle.
For a circular table with n people (n even), opposite seat = current position + n/2 (mod n). For 8 people: if A is at position 1, E (opposite) is at position 5. For 12 chairs: if A is at chair 3, opposite is chair 3+6=9. This lets you mark opposite pairs instantly without counting around the circle. Counting manually: 4-5 seconds per pair. Formula: 1 second. In a puzzle with 3-4 opposite-pair clues, saves 10-15 seconds — enough to not need to rush the final question.
Before writing anything, scan all clues and find the one that connects the most other clues. This is your anchor. In a 6-person puzzle with 7 clues, one clue will reference 2-3 people already referenced by other clues — that's your start. Starting from a weak clue means rebuilding. Starting from the hub clue means you fill 3-4 positions in one chain. Reduces total fill steps from ~12 to ~7 in a typical 6-person puzzle.
In a double-row puzzle (4 per row), after placing both rows, do a 10-second mirror check: the person at position 1 in Row 1 should face the person at position 1 in Row 2 (assuming opposite facing). If your "opposite" answers don't satisfy this, your row directions are flipped. Catching this error before answering all 5 questions saves you from getting 4-5 questions wrong in one go — a devastating hit to your score.
In the exam hall, use this decision tree the moment you see a seating arrangement set:
Step 1 — Identify the type (5 seconds): Circular? Linear? Double row? Polygon? Write the type at the top of your rough sheet.
Step 2 — Draw the skeleton (10 seconds): Empty chairs with direction arrows. For circular: label CW = Right. For double row: label which row faces which direction.
Step 3 — Separate clues (15 seconds): Mark each clue as Positive (places someone directly) or Negative (says where someone is not). Set negatives aside.
Step 4 — Find the anchor (10 seconds): The clue that gives an absolute position or creates the longest chain. Start here.
Step 5 — Fill positively (60-90 seconds): Chain through positive clues until stuck or done.
Step 6 — Apply negatives (15-20 seconds): Use elimination to resolve remaining ambiguities.
Step 7 — Answer questions (30 seconds): Re-read each question with your completed diagram. Don't answer from memory — look at the diagram every time.
Total target time: under 3 minutes for the arrangement, then 30 seconds per question.
Why this question: Tests hexagonal arrangement geometry — a less common but high-difficulty format that SBI PO includes to separate top scorers.
Solving path: Fix A and B opposite each other (3 seats apart in a hexagon). C is second right of A — count 2 clockwise from A. D is adjacent to both A and B — only 2 seats qualify, and with C placed, D must be the remaining seat adjacent to A (adjacent to A but not C). Now E is not adjacent to C — check which remaining seats are adjacent to C and exclude them for E. F fills the last seat. Verify: F sits opposite C. The hexagon's fixed geometry makes "opposite" unambiguous — each seat has exactly one seat across.
Why this question: Clockwise chair-counting in a 12-chair circle — tests the most commonly confused operation in circular arrangements.
Solving path: A is on chair 3, C is on chair 11. Clockwise from A (chair 3) to C (chair 11): the chairs in between are 4, 5, 6, 7, 8, 9, 10 — that is 7 chairs. The key is "between" means you do not count chairs 3 and 11 themselves. Formula check: 11 - 3 - 1 = 7. Direct count confirms.
Why this question: Standard linear arrangement with a mix of positive and negative clues — exactly the type that appears in SBI PO Prelims at high frequency.
Solving path: P at position 3 is the anchor. Q at position 5 (2 right of P). Remaining positions: 1, 2, 4, 6 for R, S, T, U. R not at extreme end → R not at 1 or 6. S sits immediate left of U → S-U is a consecutive pair. T does not sit adjacent to P → T not at 2 or 4. Place S-U: possible pairs are (1,2), (2,3)—blocked by P, (4,5)—blocked by Q, (6,7)—doesn't exist. So S-U at (1,2) or left of Q... Working through: arrangement becomes T(1)-R(2)-P(3)-S(4)-Q(5)-U(6). Check: R not extreme ✓, S left of U ✓, T not adjacent to P ✓. U is at right end (position 6).
Why this question: 5-person linear with "middle seat" as the answer — tests whether you can handle two valid-looking arrangements and identify the common element.
Solving path: B is immediate right of A → A-B is a fixed block. D is second left of E → D _ E pattern. C is not at any end. In 5 seats, fit A-B block and D _ E pattern. Option 1: D(1)-A(2)-B(3)-C(4)-E(5)? Check: D second left of E → position 1 and 3 — no, that's only 1 apart. Recalculate: D second left of E means D at position x, E at position x+2. So D(1)-?(2)-E(3) or D(2)-?(3)-E(4) or D(3)-?(4)-E(5). Placing A-B block and C not at ends: D(1)-A(2)-B(3)-C(4)-E(5) — here D is at 1, E at 5, that's 4 apart not 2. Try: D(1)-?(2)-E(3)-A(4)-B(5)? C not at end, so C≠1 and C≠5 — C would be at position 2: D(1)-C(2)-E(3)-A(4)-B(5). Check A-B adjacent ✓, B right of A ✓, D 2nd left of E ✓, C not at end ✓. C is at position 3 — the middle.
Why this question: Double-row parallel arrangement — the most complex standard type, and SBI PO sets often include 3-4 questions from a single such puzzle.
Solving path: Row 1 faces south (4 seats), Row 2 faces north (4 seats). They face each other. Draw Row 1 as positions 1-4 (left to right) and Row 2 as positions 1-4 directly across. L in Row 1, K second right of L → if L is at Row 1 position 1, K is at Row 1 position 3. M opposite K → M at Row 2 position 3. N at extreme end of Row 2 → N at Row 2 position 1 or 4. O third left of N: if N is at Row 2 position 4, O is at Row 2 position 1 (4-3=1). Now Row 2 has M(pos 3), N(pos 4), O(pos 1) — position 2 is empty. Row 1 has L(pos 1), K(pos 3). L is at Row 1 position 1; opposite in Row 2 is position 1 → O. So O sits opposite L.
Reversing left/right in circular arrangements facing the center. The person's left is counter-clockwise on the diagram, not clockwise. This is the single most common error and affects every clue in the puzzle. Always annotate your circle with "CW = Right" before starting.
Counting the starting chair in between-chairs questions. "How many chairs between A and C" means do not count A's chair or C's chair. Students often count 8 when the answer is 7 because they include A's chair in the count.
Applying negative clues too early. "T does not sit adjacent to P" cannot place anyone — it can only eliminate. Using it before the positive clues are exhausted leads to branching logic and wasted time. Save negatives for the final disambiguation step.
Confusing row direction in double-row puzzles. If Row 1 faces south and Row 2 faces north, the leftmost person in Row 1 (from your perspective) faces the leftmost person in Row 2 (from your perspective) — but they are at opposite ends of each other's row from their own viewpoint. Numbering both rows from the same observer direction avoids this confusion.
Treating "second to the right" and "second from the right" as identical. "Second to the right of P" means 2 positions clockwise/rightward from P. "Second from the right end" is an absolute position (second from the last). In a 6-person row, these can point to completely different positions.
Abandoning a partially-built arrangement at the first contradiction. A contradiction usually means one clue was mis-applied, not that the entire setup is wrong. Backtrack one step, check the clue that caused the contradiction, and re-read it literally. Students who start over from scratch waste 2-3 minutes unnecessarily.