Ok, here we go:
If you take the puzzle and write down where 6 can go then you get this: (the question mark is used to indicate the possibility, if the 6 is already fixed/placed then there is no question mark):
- Code: Select all
* 4 3 | 9 8 6? | 2 5 6? |
6 * * | 4 2 5 | * * * |
2 * * | * 6? 1 | 6? 9 4 |
-----------------------
9 6? 6? | * * 4 | 6? 7 6? |
3 * * | 6 * 8 | * * * |
4 1 6? | 2 * 9 | 6? 6? 3 |
-----------------------
8 2 6? | 5 6? 6? | 6? 6? 6? |
* 6? 6? | * 4 6? | 6? 6? 5 |
5 3 4 | 8 9 6? | 7 1 6? |
Now, when you look at row 1 and row 9 you will see that 6 can go in the same columns in both rows:
Row1: 6 only possible in column 6 and column 9
Row9: 6 only possible in column 6 and column 9
Assume the following things:
a) r1c6 = 6, then r9c6 can't be 6, so r9c9 has to be 6,
b) r1c9 = 6, then r9c9 can't be 6, so r9c6 has to be 6,
c) r9c6 = 6, then r1c6 can't be 6, so r1c9 has to be 6,
d) r9c9 = 6, then r1c9 can't be 6, so r1c6 has to be 6,
those are the only possiblities...
Now if you would fill in 6 in r8c6 (for example), then either row1 or row9 is missing a 6...
This means that you now know that there is no 6 in r2c6 until r8c6, and in r2c9 until r8c9
(And this is particular intresting for r7c9, since that cell can only have 6 or 9, but we just said is impossible..., so you can fill it in)
Does this make any sense to you?