Jasper32 wrote:It seems like everytime I think I have the XY chain down pat, something comes along I don't understand. It the puzzle below, please look at
r9c4=2 r4c4=6 r4c9=1 r9c9=2
If I go backwards it still looks like as if r9c4 or r9c2 should equal 2 and I could eliminate 2 from r9c7.
I would appreciate somebody informing me of my faulty logic by explaning in detail where I went wrong.
- Code: Select all
*--------------------------------------------------------------------*
| 2346 5 246 | 2369 1 269 | 268 7 24689 |
| 9 1 246 | 7 26 8 | 5 3 246 |
| 236 8 7 | 4 2369 5 | 26 1 269 |
|----------------------+----------------------+----------------------|
| 5 9 3 | 26 4 126 | 7 8 16 |
| 1246 24 246 | 8 7 3 | 146 9 5 |
| 146 7 8 | 69 5 169 | 146 2 3 |
|----------------------+----------------------+----------------------|
| 248 234 5 | 1 23 7 | 9 6 28 |
| 28 23 1 | 5 69 69 | 238 4 7 |
| 7 6 9 | 23 8 4 | 123 5 12 |
*--------------------------------------------------------------------*
Try the "Left Over Method" described back in Feb
in this thread, and you'll never have this problem again.
If you start with the 2 in r9c4, then the 3 is the "left over" number. In your example you could say, "3 is left over and
2 can see 2, (in r4c4)
6 can see 6, (in r4c9)
1 can see 1, (in r9c9)
and 2 is left over."
It's not an XY cycle if the first and last "left over" numbers are not the same, simple as that. When they *are* the same, any value that both the "left over" values can see is the elimination.
Looking at Glyn's example, you would start with r4c4, and the 2 would be the "left over" number. You could say, "2 is left over and
6 can see 6,
1 can see 1,
and 2 is left over."
Both "left over" numbers are 2, and both can see the 2 in r9c4, and there ya have it.
Take a look at another XY chain from this puzzle and see if you can find two "left over" 6's.
- Code: Select all
*--------------------------------------------------------------------*
| 2346 5 246 | 2369 1 269 | 268 7 24689 |
| 9 1 246 | 7 *26 8 | 5 3 246 |
| 236 8 7 | 4 2369 5 | 26 1 269 |
|----------------------+----------------------+----------------------|
| 5 9 3 | *26 4 126 | 7 8 16 |
| 1246 24 246 | 8 7 3 | 146 9 5 |
| 146 7 8 | 69 5 169 | 146 2 3 |
|----------------------+----------------------+----------------------|
| 248 234 5 | 1 *23 7 | 9 6 28 |
| 28 23 1 | 5 69 69 | 238 4 7 |
| 7 6 9 | *23 8 4 | 123 5 12 |
*--------------------------------------------------------------------*