Box line reduction is the mirror image of pointing pairs, and solvers who know one but not the other miss half the eliminations available to them. Here the line does the work: a digit trapped inside one box by a row or column is banned from the rest of that box.
Pick a row and a digit still missing from it. Mark every cell of the row where that digit is a candidate. If all of those cells sit inside a single box, then the row's copy of the digit must land in that box. The box only gets one copy of any digit, so it is spoken for, and the digit can be deleted from the box's cells that lie outside the row.
Columns work the same way. The pattern is sometimes called claiming, because the line claims the digit from the box.
| Box line reduction | Pointing pair | |
|---|---|---|
| What is confined | a line's copy of the digit, inside one box | a box's copy of the digit, inside one line |
| Cells you clear | the box cells off that line | the line cells outside that box |
| You scan | rows and columns | boxes |
| Same family | locked candidates | locked candidates |
Scanning for one does not find the other, so make both sweeps part of the same routine.
Row 3. x marks a cell where 4 is still a candidate:
box 1 | box 2 | box 3
c1 c2 c3 | c4 c5 c6 | c7 c8 c9
- - - | - - - | x - x
Row 3 needs a 4 and can only place it in box 3.
So box 3 takes its 4 from row 3.
-> remove 4 from r1c7, r1c8, r1c9, r2c7, r2c8 and r2c9
Six cells lose a candidate from one observation, and none of the six is in row 3. That is the whole point: the eliminations happen off the line you were looking at.
Box line reduction becomes necessary around medium classic Sudoku and appears constantly from Hard upwards in both classic and Killer grids. Together with pointing pairs it is the last basic technique that works on raw candidates alone, so master it before moving on to patterns that span three or more units.