Forcing Nets are the last technique that is still pure logic. You take every candidate of one cell in turn, follow its consequences as far as they go, and look for something all the branches agree on. Whatever they agree on is true, because one of those candidates is the real value. No guessing is involved — you simply examine all the cases instead of one.
A chain follows a single line of implications. A net does the same but allows branches to split and merge: a conclusion can need two earlier deductions at once, such as "this cell is 4 and that cell is 9, therefore the box has only one place left for 7". That branching is what makes nets stronger than chains, and slower to check.
There are two ways to start, and two ways to finish:
| Start from | You follow | It proves |
|---|---|---|
A cell with k candidates | one branch per candidate | anything all branches share |
A digit with k places in one unit | one branch per place | anything all branches share |
If every branch produces the same placement, that placement is true. If every branch removes the same candidate, that candidate is dead. And if a single branch runs into a contradiction — a digit twice in one unit, or a cell with nothing left — then that one candidate is false on its own, without needing the others.
Only when everything cheaper has failed: singles, locked sets, fish, wings, chains and locked-set techniques. Nets are expensive to trace and easy to get wrong, so they are a deliberate last logical step, not a habit. Choose a starting cell with two candidates and plenty of bivalue neighbours; the branches stay short and the whole thing stays checkable.
r1c1 {2,5} r1c4 {2,7} r9c1 {5,7} r9c4 {1,7,9}
branch 1: r1c1=2 -> r1c4 not 2 -> r1c4=7 -> r9c4 not 7 (column 4)
branch 2: r1c1=5 -> r9c1 not 5 -> r9c1=7 -> r9c4 not 7 (row 9)
The cell r1c1 has to be 2 or 5, and both roads end in the same place, so r9c4 loses its 7 and is left with {1,9}. Notice that you never learn what r1c1 is. The branches did their work and were thrown away; only the shared conclusion is kept.
Real nets are longer than this and their branches usually merge — one branch may need two placements to combine before it moves on — but the shape of the argument never changes.
Forcing Nets are what our hardest grids are built to demand. Expect them in Legendary puzzles, and only after chain techniques like 3D Medusa have been tried. Anything that a net solves, a shorter technique could in principle solve too — the net is what you use when you cannot find that shorter technique.