It looks like this:
- Code: Select all
.39|5..|...
...|8..|.7.
...|.1.|9.4
---+---+---
1..|4..|..3
...|...|...
..7|...|86.
---+---+---
..6|7.8|2..
.1.|.9.|..5
...|..1|..8
I worked through the process presented, which (thanks to a couple of obvious singletons) quickly yields the simplified version
- Code: Select all
.39|5..|...
..1|8.9|.7.
...|.1.|9.4
---+---+---
1..|4..|..3
...|...|...
..7|...|86.
---+---+---
..6|7.8|2..
.1.|.9.|..5
...|..1|..8
but I'm stumped by the statement "There is a preemptive pair [2, 8] in column 3 in cells c (3, 3) and c (4, 3) of Figure 8"
Column 3 containsthe unknowns 258, 258, 23458, 2348, 2345. The second referenced cell (c (4,3) ) gets it's '5' crossed out, and thus the unknown cells become 258, 28, 23458, 2348, 2345.
So how does one identify a 'preemptive pair' of just [2, 8] in c(3,3) and c(4,3) given the presence of all the other 2's and 8's in the other cells in the columns? c(3,3) has 258; c(5,3) 23458. Why is c(3,3) any more eligible to be the 'partner' of c(4,3) than c(5,3), or even c(8,3)?
I understand all the other techniques in his example, most of which are more complicated than the 'pre-emptive pair' technique above!
Hopefully I've explained my question - apologies as this is my first post.
Thanks!