Episode 8 — Aptitude and Reasoning / 8.23 — Arrangements

8.23.b Tips, Tricks, and Shortcuts -- Arrangements

Tip 1: The Constraint-First Approach (Most Important!)

Always process constraints in this order:

Priority 1: Fixed/Definite positions

  "A sits at the left end."          -> Place A immediately.
  "B is 3rd from the right."         -> Place B immediately.
  "C sits in the middle."            -> Place C immediately.

Priority 2: Strong relative constraints

  "D is to the immediate left of E." -> Place D-E as a block.
  "F sits between G and H."          -> Place G-F-H as a block.

Priority 3: Distance constraints

  "There are 2 people between I and J." -> Mark possible position pairs.

Priority 4: Negative constraints (use LAST for elimination)

  "K is NOT adjacent to L."          -> Use to eliminate invalid arrangements.
  "M does NOT sit at any end."       -> Restrict M's positions.

Tip 2: The "Block" Method

When two or more people have fixed relative positions, treat them as a single block.

Example: "A is to the immediate left of B"

  Treat [A B] as one block.
  In a row of 5:  [A B] _ _ _   or   _ [A B] _ _   or   _ _ [A B] _   or   _ _ _ [A B]

Example: "C sits between D and E"

  Treat [D C E] or [E C D] as a block of 3.

Advantage:

A row of 7 with a block of 2 = effectively arranging 6 items (5 individuals + 1 block).


Tip 3: The Case Method

When constraints allow multiple possibilities, create separate cases and solve each.

Example:

"A sits at one end. B is 3 positions from A."

  Case 1: A at LEFT end (Position 1)
  -> B at Position 4
  
  Case 2: A at RIGHT end (Position 7)
  -> B at Position 4

Process remaining constraints for each case. Eliminate impossible cases.


Tip 4: Circular Arrangement -- Fix One Person

In circular arrangements, ALWAYS fix one person first to eliminate rotational symmetry.

  Step 1: Fix A at the "top" of the circle (arbitrary but consistent).
  
         A
        / \
       ?   ?
       |   |
       ?   ?
        \ /
  
  Step 2: Now arrange others relative to A.

This reduces the problem from (n-1)! possibilities to a manageable number.


Tip 5: Two-Row Arrangement -- Draw Both Rows

Always draw both rows clearly with facing directions marked.

  Row 1 (Facing South): ___ ___ ___ ___ ___
                          |   |   |   |   |
  Row 2 (Facing North): ___ ___ ___ ___ ___
  
  Mark positions 1-5 from LEFT to RIGHT (from an external observer's perspective).
  
  Remember: Row 1's "left" (from their perspective) = observer's RIGHT in the diagram
  if they face South.

Important Convention:

To avoid confusion, always use absolute positions (1st, 2nd, 3rd from left of diagram) rather than "left/right from the person's perspective."


Tip 6: Elimination Method for MCQs

When given options showing complete arrangements, test each option against every constraint.

Strategy:

  1. Pick the MOST restrictive constraint.
  2. Eliminate options that violate it.
  3. Pick the next constraint.
  4. Eliminate more options.
  5. Usually 1-2 options remain after 2-3 constraints.

Example:

Constraints: A is at one end. B is adjacent to C. D is NOT next to A.

  (a) A B C D E  -> A at end (ok), B adj C (ok), D next to A? No. VALID.
  (b) A D B C E  -> A at end (ok), B adj C (ok), D next to A? Yes. ELIMINATED.
  (c) E D B C A  -> A at end (ok), B adj C (ok), D next to A? No. VALID.
  (d) A C D B E  -> A at end (ok), B adj C? No (D between them). ELIMINATED.

Tip 7: The "Distance Between" Trick

"n people sit between X and Y" means their positions differ by n + 1.

  Positions differ by:
  "Adjacent"            = 1 apart
  "1 person between"    = 2 apart
  "2 people between"    = 3 apart
  "3 people between"    = 4 apart
  ...
  "n people between"    = n+1 apart

In Circular Arrangement:

There are TWO possible distances between any two people (clockwise and anti-clockwise). Unless specified, consider BOTH.

  In a circle of 8 people, if 2 people are between A and B (clockwise),
  then 8 - 2 - 2 = 4 people are between A and B (anti-clockwise).

Tip 8: "Opposite" in Different Arrangements

Circular (even number of people):

"A sits opposite B" means there are (n/2 - 1) people between them on either side.

  In a circle of 8:
  Opposite = 8/2 - 1 = 3 people between them on each side.
  
       A
      / \
    H     B
    |     |
    G  O  C
    |     |
    F     D
      \ /
       E
  
  A is opposite E (3 people between on each side).

Double Row:

"A sits opposite B" means they are directly facing each other.

Linear:

"Opposite" is generally not used in linear arrangements.


Tip 9: Handling "Left of" in Circular Arrangements

Facing Center (Inward):

  Immediate RIGHT = Clockwise neighbor
  Immediate LEFT  = Anti-clockwise neighbor
  
       P1
      / \
    P6    P2       P2 is to the RIGHT of P1 (clockwise)
    |      |       P6 is to the LEFT of P1 (anti-clockwise)
    P5    P3
      \ /
       P4

Facing Outside (Outward):

  Immediate RIGHT = Anti-clockwise neighbor
  Immediate LEFT  = Clockwise neighbor
  (REVERSED!)

Tip 10: Common Exam Traps

Trap 1: Confusing "left of" with "immediate left of"

  • "A is to the left of B" = A is anywhere on B's left side.
  • "A is to the IMMEDIATE left of B" = A is directly next to B on B's left.

Trap 2: Forgetting "both directions" in circular

  • "2 seats between A and B" in a circle has TWO interpretations (CW and CCW).
  • Unless "clockwise" or "anti-clockwise" is specified, consider both cases.

Trap 3: Perspective in two-row problems

  • Row 1 facing South: their "left" is the diagram's right.
  • Always clarify whose perspective is being used.

Trap 4: "Second to the right" vs. "Two seats to the right"

  • Both mean the same: skip one seat to the right.
  • Position differs by 2.

Trap 5: Assuming adjacency includes diagonal

  • In standard arrangements, "adjacent" means IMMEDIATELY next to (sharing a boundary).
  • Diagonal is NOT adjacent in linear/circular arrangements.

Tip 11: Speed Strategy for Arrangement Puzzles

For Simple (5-6 people, 4-5 clues):

Target: 3-4 minutes for the entire set

  1. Read ALL clues first (30 sec).
  2. Identify the most definite clue and start there (30 sec).
  3. Build arrangement step by step (1-2 min).
  4. Answer all questions from the completed arrangement (1 min).

For Complex (7-8 people, 6-8 clues, double row/circular):

Target: 6-8 minutes for the entire set

  1. Read ALL clues, classify by priority (1 min).
  2. Draw the arrangement framework (30 sec).
  3. Process definite clues first (1-2 min).
  4. Handle case splits if needed (2-3 min).
  5. Answer questions (1-2 min).

Decision Rule:

If you've spent 3 minutes without progress on a complex arrangement, skip and return later. Fresh eyes often see the solution faster.


Tip 12: Visual Template for Quick Drawing

Linear (7 people):

  L  ___  ___  ___  ___  ___  ___  ___  R
     (1)  (2)  (3)  (4)  (5)  (6)  (7)

Circular (6 people, facing center):

        (1)
       /    \
     (6)    (2)
      |      |
     (5)    (3)
       \    /
        (4)

Double Row (5 each):

  Row1:  ___  ___  ___  ___  ___   (Facing South)
          |    |    |    |    |
  Row2:  ___  ___  ___  ___  ___   (Facing North)

Keep these templates ready on your rough sheet before starting the puzzle.


Previous: 8.23.a Concepts and Formulas | Next: 8.23.c Solved Examples