Chapter 9: Progressive Segmenting & Elimination

Progressive segmenting repeatedly divides the set until the target remains. Elimination scanning is the most common form.

Common techniques

Trade-offs

Example: 64 items with 4-switch elimination

  1. Select quadrant (16 items remain)
  2. Select sub-quadrant (4 items remain)
  3. Select item

Elimination scanning offers logarithmic efficiency: big grids become fast once learned.

Switch count trade-off: 2 switches means more steps, 4 or 8 switches means fewer steps if the user can reliably control them.

Efficiency Snapshot (64 items)

MethodMax PressesAverage Presses
Linear6432
Row‑Column (8×8)169
Elimination (4‑switch)33

Rule of thumb: use the maximum number of switches a user can reliably control. More switches mean fewer steps.

Demo

🎮 Experience elimination scanning speed with a 64-item grid.