Avoidable Rectangle

An Avoidable Rectangle is the inverse of a Unique Rectangle. Instead of analysing candidate cells, it examines solved cells to find patterns that puzzle creators must avoid when designing unique-solution puzzles.

How It Works

The Pattern

Look for four cells forming a rectangle:

The Deadly Pattern Connection

If the three solved cells form a partial {A, B} / {B, A} swap pattern, the unsolved cell cannot contain the digit that would complete the swap.

       C3       C7
R1   [ 5 ]    [ 8 ]     ← Solved: diagonal pair (5,8)
R5   [ 8 ]    {?}       ← Solved: 8, Unsolved: has 5 as candidate

If the unsolved cell at R5C7 contained 5:

The Logic

  1. Find rectangles with exactly 3 solved + 1 unsolved cells
  2. Check if the solved cells form a partial {A, B} / {B, A} pattern
  3. The unsolved cell CANNOT contain the digit that completes the deadly pattern
  4. Eliminate that candidate

Example

       C3       C7
R1   [ 5 ]    [ 8 ]
       │  ╲   ╱  │
       │    ╳    │
       │  ╱   ╲  │
R5   [ 8 ]    {2,5,6,9}

Analysis:

Key Difference from Unique Rectangle

Aspect Unique Rectangle Avoidable Rectangle
Analyses Candidate cells Solved cells
Cells 4 unsolved cells 3 solved + 1 unsolved
Pattern All have {A, B} candidates Solved show partial {A, B}/{B, A}
Perspective Solver's view Puzzle creator's view

Why "Avoidable"?

The name comes from the puzzle constructor's perspective. When creating a puzzle:

Finding Avoidable Rectangles

  1. Look for solved rectangles — Four cells spanning two boxes, two rows, two columns
  2. Count solved vs unsolved — Need exactly 3 solved, 1 unsolved
  3. Check the diagonal — Do solved cells form {A, B} / {B, ?} or similar?
  4. Find the dangerous candidate — Which digit would complete the deadly swap?
  5. Eliminate it — That candidate cannot appear in the unsolved cell

Complexity

Avoidable Rectangle is an advanced technique because:

Related Techniques