So I think we can use the 2 or nothing BUG rule to find all of the Bivalue deadly patterns (bivalue meaning deadly patterns that are limited to two candidates per cell) which includes unique rectangles. This can help solve a lot of puzzles. However, this technique usually isn't much help when most of your cells contain more than 2 candidates, as is the case in most of the really tough puzzles. The question now becomes, what's the rule for finding deadly patterns that allow for more than two candidates per cell (MUGs, or Multivalued Universal Graves).
I believe that most MUGs are just composites made up of several BUG-lites. Lets look at a few simple setups....
- Code: Select all
12 | 123 13
12 | 12 .
------------
. | 13 13
This is a MUG which is made up of the following two BUGs
- Code: Select all
12 | 12 . . | 13 13
12 | 12 . . | . .
----------- and -----------
. | . . . | 13 13
This works even if the two BUGs do not have a candidate in common, for example...
- Code: Select all
12 | 1234 34
12 | 12 .
------------
. | 34 34
I think (not sure) the following pattern would also be a MUG...
- Code: Select all
. . abc | abc . . | . . .
. . abc | abc . . | . . .
. . abc | abc . . | . . .
In the above example, the BUG rule will find 9 deadly rectangles. If you take the union of all the deadly rectangle bases, you end up with all of the abc's shown. Yet not every union of BUG's results in a MUG. For example, we know the following...
- Code: Select all
. . abc | abc . . | . . .
. . abc | abc . . | . . .
. . . | . . . | . . .
Is not a deadly pattern MUG even though it is made up of BUG uniqueness rectangles.
So there are a couple of questions here...
1. How can you tell for sure if you have a deadly pattern MUG?
For example, can you tell if the following patterns are MUGs?
- Code: Select all
. . abc | abc . . | . . .
. . abc | abc . . | . . .
. . ab | ab . . | . . .
and
- Code: Select all
. . ab | abc . . | bc . .
. . ab | abc . . | bc . .
. . . | . . . | . . .
2. Are there some simple rules about how you can join BUGs together to guarantee you make a MUG?
Is it a number of overlapping cells kind of thing...one guess might be that two BUGs form a MUG so long as all the overlapping cells of the two deadly patterns can be restricted to a single group? BUGs can also be added to MUGs to form bigger MUGs as well??? We know it must work if there is a pattern overlap in only a single cell.
Anyone else have some ideas or comments?