tso wrote:jraggio wrote:I am actually still struggling with why r1c9 and r4c9 do not form a hidden pair.
- Code: Select all
+-------------+-------------+-------------+
| 478 789 5 | 6 3 89 | 1 2 47 |
| 48 1 2 | 7 5 89 | 49 6 3 |
| 67 679 3 | 1 2 4 | 79 5 8 |
+-------------+-------------+-------------+
| 3 67 1 | 8 46 2 | 5 9 467 |
| 678 2 4 | 9 1 5 | 78 3 67 |
| 5 68 9 | 3 46 7 | 48 1 2 |
+-------------+-------------+-------------+
| 2 3 7 | 4 9 1 | 6 8 5 |
| 9 5 8 | 2 7 6 | 3 4 1 |
| 1 4 6 | 5 8 3 | 2 7 9 |
+-------------+-------------+-------------+
A naked pair is two cell each of which have the same two candidates. Cells r1c9 and r4c9 have *three* candidates between them. You are correct that the three cells r145c9 form a naked triple in column 9. No two of those three cells are a naked pair. You may be conflating naked pairs with *hidden* pairs.
In this row, the first two cells are a naked pair. You can exclude the 1's and 2's from the rest of the row:
- Code: Select all
Before: [12][12][12345][12678] ...
After: [12][12][xx345][xx678] ...
In this row, the digits 1 and 2 appear ONLY in the first two cells. You can exclude all other candidates from these first two cells:
- Code: Select all
Before: [12345][124567][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2]
After:[12x][12xx][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2][<>1,2]
Thanks again for your time. To clarify, does "[<>1,2]" mean anything but 1 or 2?
Thanks,
John