Here's the simple weak link analysis:
- Code: Select all
1
|
7--6*..6---A---8,9
| |
(r3c9) 7*.........7
Where there is a short 7-7-6 strong chain.
You can't have two weak links to single almost-locked set,
because only one of A6 or A7 can be FALSE. So BOTH r3c9#7 and
r3c4#6 can be eliminated.
Alternatively, just consider the 67 in r3c4 to be a second
almost-locked set. Then we have the standard
- Code: Select all
1
|
7-B-6...6---A---8,9
: |
(r3c9) 7*..........7
And we can't have r3c9#7 because the two almost-locked sets
are already linked by 6.
Or, using X-type almost-locked sets, we would say:
- Code: Select all
1
|
7...6*..6---A---8,9
B| |
(r3c9) 7...........7
The 7-7 in row 3 constitutes an almost-locked row set (two column
"candidates" for 7 in the single row 3, like two candidates for a single cell),
thus linking A and B. The 6 at r3c4 would act as a second link to
both and thus can be eliminated.
Basically, this is just plugging almost-locked sets into standard
chain analysis, which is based on the simplest almost-locked sets,
anyway. So ANY chain analysis can be conceptualized in terms of
almost-locked sets. There is an infinite variety of such combinations.
Very interesting.