Introduction
The Mixed Puzzle (Combination) pattern combines two or more basic puzzle types - for example, seating + professions, floor + months, or table + colors - into a single multi-layered logic problem.
This pattern is important because exam-style problems often combine patterns to increase cognitive load: you must manage multiple attributes (position, direction, category) simultaneously while preserving all constraints.
Pattern: Mixed Puzzle (Combination)
Pattern
Combine two or more arrangement types (seating, floor, tabular attributes) and solve by progressive elimination and cross-referencing.
Typical steps: (1) identify fixed pairs/blocks, (2) convert directional clues into offsets, (3) build a multi-attribute grid (partial matrix), and (4) eliminate until all attributes fit.
Step-by-Step Example
Question
Eight people - A, B, C, D, E, F, G, H - sit around a circular table facing the center. Each person also belongs to a different department: HR, IT, Finance, Sales, Ops, Legal, R&D, Marketing. Clues:
- A sits third to the right of D.
- The HR person sits opposite the Finance person.
- C is immediate left of the IT person.
- G sits between the Sales and R&D persons.
- H is two seats clockwise from the Marketing person.
Options:
A) A B) B C) C D) E
Solution
-
Step 1: Place a reference
Place D at an arbitrary seat to break rotational symmetry; we will index seats clockwise from that reference. -
Step 2: Apply the A-D offset
A sits third to the right of D. Facing the center, right = clockwise → from D move three seats clockwise to place A. -
Step 3: Fix HR ↔ Finance opposite pair
Opposite in an 8-seat circle = 4 seats apart. Place HR and Finance in opposite seats (n and n+4). In this arrangement choose HR at seat 8 and Finance at seat 4 to satisfy future placements. -
Step 4: Place IT & its left neighbor
C is immediate left of the IT person (left = anticlockwise). Place C and IT as an adjacent pair (C anticlockwise of IT). -
Step 5: Place G between Sales & R&D and Marketing-H offset
Put a contiguous triple Sales - G - R&D (G between Sales and R&D). Also place Marketing and H so that H is two seats clockwise from Marketing (Marketing → +2 → H). -
Step 6: Complete by elimination
Filling remaining departments and people by elimination gives one consistent arrangement (clockwise seats 1→8 shown below). Verify all clues against this table.Seat (clockwise) Person Department 1 B R&D 2 G Ops 3 A Sales 4 E Finance 5 F Marketing 6 C Legal 7 H IT 8 D HR -
Final Answer:
A → Option A -
Quick Check:
A is 3rd right of D (Seat 3 vs Seat 8) ✅ HR (D seat 8) opposite Finance (E seat 4) ✅ C immediate left of IT (C seat 6 left of H seat 7) ✅ G between Sales (seat 3) & R&D (seat 1) ✅ H is two seats clockwise from Marketing (Marketing seat 5 → H seat 7) ✅
Quick Variations
1. Combine circle + ages (seating + numeric comparisons).
2. Floor (vertical) + professions (multi-attribute table).
3. Seating + timetable (day/time slots + attributes).
4. Mixed puzzles with one or more "not adjacent" constraints to increase elimination complexity.
Trick to Always Use
- Step 1: Place opposites and absolute offsets first (they reduce symmetry).
- Step 2: Convert left/right into clockwise index moves to avoid confusion.
- Step 3: Maintain a partial matrix (seat ↔ person ↔ attribute) and iterate by elimination.
Summary
Summary
- Lock fixed/opposite pairs first to reduce symmetric permutations.
- Translate directional clues into seat offsets (use +clockwise indices).
- Place contiguous blocks (e.g., X between Y & Z) as single units during placement.
- Always verify opposites using the rule: opposite seat = n ± 4 (mod 8) for 8-person circles.
Example to remember:
Fix opposites/absolute offsets first, then place adjacent pairs and contiguous blocks, and finally fill remaining attributes by elimination.
