keith wrote:Unique Rectangles: The Essentials...
Section 4: Suppose we have the following:
- Code: Select all
+-------------+
| # - - |
| 12 - 123 |
| # - - |
+-------------+
| 123 - 12 |
| - - # |
| - - # |
+--------------+
...
There is an interesting diagonal variation, sometimes called a
Type 6 UR. It was first noticed as the overlay of an X-wing on a UR. Consider the pattern of Section 4, above, and suppose the rectangle is also an X-wing on <1>. The result must be:
- Code: Select all
+--------------+
| - - - |
| 1 - 23 |
| - - - |
+--------------+
| 23 - 1 |
| - - - |
| - - - |
+--------------+
The bottom right cell cannot be 2, because that would force the deadly pattern. (In fact, you do not need the full X-wing to make reductions. This will be explored in the examples.)
Hi,
I have problems understanding Type 6. For me, the reasoning is flawed.
It basically says something like "this cell (in the UR) cannot be 2 because it would give a dual solution". But if the cell is 2, then there is no dual solution anymore, because it breaks the UR. In other words, I do not see any other solution with the cell = 2
Because of the X-Wing on 1, the solution could be
- Code: Select all
+-------------+
| - - - |
| 2 - 1 |
| - - - |
+-------------+
| 1 - 2 |
| - - - |
| - - - |
+-------------+
I see nothing wrong here.
What did I miss ? Can someone show me the two solutions with the cell = 2 ?
In
your real example, this pattern cannot work because of some
other reason (6 at c7 locked at r79c7), but not because of the UR and X-Wing
aloneTIA