Is this solvable without BUG?

Advanced methods and approaches for solving Sudoku puzzles

Is this solvable without BUG?

Postby TopRank » Fri Dec 30, 2005 3:38 am

Can this be solved without BUG?
Code: Select all
+   -   -   -   +   -   -   -   +   -   -   -   +
|   3   4   9   |   1   6   2   |   7   5   8   |
|   8   5   1   |   39  34  7   |   2   6   49  |
|   2   7   6   |   8   5   49  |   13  34  149 |
+   -   -   -   +   -   -   -   +   -   -   -   +
|   7   1   8   |   5   34  6   |   9   34  2   |
|   5   6   2   |   39  7   49  |   13  8   14  |
|   9   3   4   |   2   8   1   |   5   7   6   |
+   -   -   -   +   -   -   -   +   -   -   -   +
|   6   9   7   |   4   2   3   |   8   1   5   |
|   4   2   5   |   7   1   8   |   6   9   3   |
|   1   8   3   |   6   9   5   |   4   2   7   |
+   -   -   -   +   -   -   -   +   -   -   -   +


I can follow the rule of a BUG+1, but I cannot explain it. If r3c9 is not 4 then for some reason the puzzle would not be solvable - I guess.

I cannot find an xy-wing, which, along with type 1 box uniqueness is the only technique I know more advanced than crossing out groups with pencil marks.

I also want to throw the idea out of a wikipedia article on Sudoku solving techniques. I plan on starting one. If one is started it would be great if the experts here add to it. Questions I am working on are what solving techniques should be added and how examples should be uploaded, meaning what is the best way to produce pictures that could be used in an article to illustrate solving techniques.

If anyone has a link to techniques that I can use I appreciate that . Of course I will do a search of this forum first anyway.

Also, I would really appreciate a list of advanced technques in order of the ones you experts find to be the most to least useful in solving new sudokus.

Wikipedia is a top-30 website and a lot of people would consider it an more logical place to look for solution techniques than even sudoku.com!
TopRank
 
Posts: 11
Joined: 22 December 2005

we do not understand u

Postby Guest » Fri Dec 30, 2005 4:11 am

give me the original Q
Guest
 
Posts: 312
Joined: 25 November 2005

Postby TopRank » Fri Dec 30, 2005 4:35 am

Code: Select all
+ -  -  -  + -  -  -  + -  -  -  +
|          |    6     |    5     |
| 8     1  |       7  | 2        |
| 2  7     | 8        |          |
+ -  -  -  + -  -  -  + -  -  -  +
|          | 5        |       2  |
|    6     |          |    8     |
| 9        |       1  |          |
+ -  -  -  + -  -  -  + -  -  -  +
|          |       3  |    1  5  |
|       5  | 7        | 6     3  |
|    8     |    9     |          |
+ -  -  -  + -  -  -  + -  -  -  +
TopRank
 
Posts: 11
Joined: 22 December 2005

Postby bennys » Fri Dec 30, 2005 4:52 am

Remote pairs,coloures,forcing chains
bennys
 
Posts: 156
Joined: 28 September 2005

Re: Is this solvable without BUG?

Postby Jeff » Fri Dec 30, 2005 5:12 am

TopRank wrote:I can follow the rule of a BUG+1, but I cannot explain it. If r3c9 is not 4 then for some reason the puzzle would not be solvable - I guess.

Hi TopRank, A reference to the proof has been added to the theorem in the BUG thread.
Jeff
 
Posts: 708
Joined: 01 August 2005

Re: Is this solvable without BUG?

Postby tso » Fri Dec 30, 2005 6:38 am

TopRank wrote:Can this be solved without BUG?


Yes -- but nothing will be as quick and obvious as BUG.

ALL puzzles that have been reduced to the point where all undecided cells are bivalue except one that is trivalue have one or more xy-type forcing chains that will finish them off. This one is no exception. For example:

Code: Select all
 
  3    4    9    | 1    6    2    | 7    5    8   
  8    5    1    |[39]  34   7    | 2    6   [49] 
  2    7    6    | 8    5    49   | 13   34   149 
 ----------------+----------------+----------------
  7    1    8    | 5    34   6    | 9    34   2   
  5    6    2    |[39]  7   [49]  | 13   8   [14] 
  9    3    4    | 2    8    1    | 5    7    6   
 ----------------+----------------+----------------
  6    9    7    | 4    2    3    | 8    1    5   
  4    2    5    | 7    1    8    | 6    9    3   
  1    8    3    | 6    9    5    | 4    2    7   


Both values of r5c6 force r5c9=1.


The puzzle can also be solved by coloring 4's:

Code: Select all
  .    .    .    | .    .    .    | .    .    .   
  .    .    .    | .   +4    .    | .    .   -4   
  .    .    .    | .    .   -4    | .   -4    4 
 ----------------+----------------+----------------
  .    .    .    | .   -4    .    | .   +4    .   
  .    .    .    | .    .   +4    | .    .   -4   
  .    .    .    | .    .    .    | .    .    .   
 ----------------+----------------+----------------
  .    .    .    | .    .    .    | .    .    .   
  .    .    .    | .    .    .    | .    .    .   
  .    .    .    | .    .    .    | .    .    .   


Since there are two -4s within groups, they must be false. All the +4s are true.


Also, remote pairs:

Code: Select all
  3    4    9    | 1    6    2    | 7    5    8   
  8    5    1    | 39  +34   7    | 2    6    49   
  2    7    6    | 8    5    49   | 13  -34   149 
 ----------------+----------------+----------------
  7    1    8    | 5   -34   6    | 9   +34   2   
  5    6    2    | 39   7    49   | 13   8    14   
  9    3    4    | 2    8    1    | 5    7    6   
 ----------------+----------------+----------------
  6    9    7    | 4    2    3    | 8    1    5   
  4    2    5    | 7    1    8    | 6    9    3   
  1    8    3    | 6    9    5    | 4    2    7 


r2c5 and r4c5 form a naked pair
r4c5 and r4c8 form a naked pair
r4c8 and r3c8 form a naked pair

Each pair has opposite values. You can see that r2c5 must have the opposite value as r3c8 and any cell that can "see" both of these cells must not be 3 or 4 -- excluding 4 from r3c6 and r2c9. (Either of these cells can also complete another 5-cell xy-type forcing chain when combined with the four [34] cells.)

There is no xy-wing or simple uniqueness rectangle. BUG works for the same reason the a uniqueness rectangle works. If r3c9<>4, you've got one big network that can exist in two different states and nothing left to uncover that will distinguish one from the other.


TopRank wrote:I also want to throw the idea out of a wikipedia article on Sudoku solving techniques. I plan on starting one. If one is started it would be great if the experts here add to it. Questions I am working on are what solving techniques should be added and how examples should be uploaded, meaning what is the best way to produce pictures that could be used in an article to illustrate solving techniques.

If anyone has a link to techniques that I can use I appreciate that.


See:

-- Some popular tutorials -- Simple Sudoku, Sadman Sudoku, Susser.

-- Gaby Vanhegan's must-have dictionary of Sudoku Dictionary/Lexicon.

TopRank wrote:Of course I will do a search of this forum first anyway.


The search feature in this forum isn't that great. Try using Google's Advanced Search setting the domain to SUDOKU.COM.


TopRank wrote:Also, I would really appreciate a list of advanced technques in order of the ones you experts find to be the most to least useful in solving new sudokus.


This is subjective and contextual.
tso
 
Posts: 798
Joined: 22 June 2005


Return to Advanced solving techniques