Aligned Pair Exclusion works backwards from most techniques: instead of hunting a shape, you take two cells, list every pair of digits they could hold between them, and cross out the pairs that would break something else. Whatever survives tells you which candidates are still possible.
Two cells are aligned when they sit in the same unit, so they can never hold the same digit. The pattern is at its strongest when the two cells share a box and a line at the same time, because that gives them a large set of common peers.
Now look at the bi-value cells — cells with exactly two candidates — that both of your chosen cells can see. Each one is a small veto. A bi-value cell holding {a, b} must end up as a or b. If your first cell took a and your second took b, that bi-value cell would have nothing left. So the combination a-b is impossible, and so is b-a.
Run that veto over every pair, and any candidate that survives in no combination at all can be removed.
Two conditions make Aligned Pair Exclusion worth the effort:
An empty box corner facing a busy box is the classic setting.
| Good pair to test | Bad pair to test | |
|---|---|---|
| Candidates per cell | 2-3 | 4 or more |
| Shared regions | box and line | one line only |
| Bi-value cells seen by both | 3 or more | 0-1 |
| Pairs to check | under 10 | 20+ |
Both cells sit in row 1 and in box 1, so they can never hold the same digit.
r1c1 {2,4,7} r1c2 {2,4,9}
bi-value cells seen by both (all in box 1):
r2c3 {2,4} r3c1 {4,9} r3c3 {2,9}
pairs (r1c1, r1c2):
2-4 x r2c3 would be empty
2-9 x r3c3 would be empty
4-2 x r2c3 would be empty
4-9 x r3c1 would be empty
7-2 ok 7-4 ok 7-9 ok
2 and 4 survive nowhere for r1c1 => r1c1 is 7
Every combination starting with 2 or 4 kills one of the three bi-value cells, so r1c1 can be neither. Only 7 is left, which is a placement rather than a plain elimination — a good day for this technique. More often you will remove one candidate from one cell, which is still enough to restart a stalled grid.
{a, b} vetoes a-b and b-a.The same reasoning extends to three aligned cells and to almost locked sets used in place of bi-value cells, but the two-cell form is where the value-per-minute is highest.
Aligned Pair Exclusion is a diabolical technique. It first becomes necessary in Expert puzzles, typically once the wings and fish have run dry and the grid still has a dense pocket of bi-value cells. Easier levels never need it.