The ALS A is located in unit "UA" and B in "UB". Now, if "x" can occur for both A and B only in unit "U1", and if "y" can occur for both A and B only in unit "U2" (where U1 and U2 are different units, or we would have a N-tuple), then we can make the following eliminations:
- all other "x" in U1 not belonging to A and B can be eliminated;
- all other "y" in U2 not belonging to A and B can be eliminated;
- all other a,b,c,... in UA not belonging to A can be eliminated;
- all other d,e,f... in UB not belonging to B can be eliminated.
The first two eliminations are due to the ALSs xz-rule of Bennys.
Now, I apologize for illustrating this concept with the following silly example (silly because is from a very simple puzzle, and also because the concept is not even necessary for solving the grid), but let's focus just in the idea. The initial puzzle:
- Code: Select all
. . 3 | . . . | 7 8 9
. . . | 7 8 . | 1 3 .
. . . | . . . | . . .
-------+-------+-------
2 . . | . . 4 | . . 8
6 1 . | . . . | . . .
. . . | 3 . . | . . 1
-------+-------+-------
. 6 7 | . . 5 | 9 2 .
. . . | . . . | . . .
. 4 . | . . 2 | . . .
and let's concentrate only in boxes 1 and 2:
- Code: Select all
145 25 3 | 12456 12456 16 |
459 259 24569 | 7 8 69 |
145789 25789 1245689| 124569 1234569 1369|
---------------------+--------------------+-
The locked candidate "6" on row 1, box 2 will provide a straightforward solution for the puzzle. But please note the following: we have two almost locked sets in the conditions described above - A (r1c1, r1c2, r2c1, r2c2), and B (r1c6, r2c6). For these, x = 1 and y = 9, and the following eliminations can be made:
r2c3<>2,4,5,9
r3c1<>4,5
r3c2<>2,5
r3c3<>2,4,5
r1c4<>1,6
r1c5<>1,6
r3c4<>6
r3c5<>6
r3c6<>6
This makes a total of 18 eliminations with a single logical argument.
If someone find a really useful example of this concept (which I guess might be very difficult), please post in this thread.
Carcul