8

I have a sudoku puzzle that I have been doing for 270 hours. I never guess numbers and always thought that every move in sudoku had to have a logical explanation. Until the app generated this random puzzle:

enter image description here

I've never used any kind of help from an internet, but now it seems the time has come. I watched some videos, looked into some guides (i.e. sudokusnake.com). And they only helped me to eliminate 9 as a candidate in I5, G8 using the empty rectangle technique. The current state of my sudoku is:

enter image description here

What can be done to solve this sudoku puzzle, other than guessing? Any tips/hints?

Alconja
  • 37,250
  • 16
  • 116
  • 164
Qeeet
  • 183
  • 3
  • 1
    Are you 100% sure that the numbers you've written are correct? – Eagle Mar 10 '19 at 13:15
  • @Natasha, yes, I checked it with autosolver – Qeeet Mar 10 '19 at 13:29
  • Maybe I missed some chains? Some are really hard to spot – Qeeet Mar 10 '19 at 13:48
  • 1
    I am starting to solve this, so just wanted to confirm to decide if I should start from the beginning, or from the state of the second picture. – Eagle Mar 10 '19 at 13:49
  • 2
    Maybe some of these strategies might help to eliminate some candidates. – Kevin Cruijssen Mar 10 '19 at 14:33
  • 4
    I have written my own Sudoku solver. It implements level 1 techniques (single candidates and other forced moves, direct eliminations etc), and level 2 techniques (naked pairs, hidden pairs, x-wing etc) but not level 3 techniques (naked/hidden triples, swordfish, etc). The level is essentially how many moves it would take to reach a contradiction if you were to make a wrong guess instead of the move the technique tells you. To solve this sudoku my solver needed to guess at the point you got to, so your next step must be at least a level 3 technique. – Jaap Scherphuis Mar 10 '19 at 16:02
  • @JaapScherphuis, thank you for your insightful input, I'm wondering what exactly technique has to be using to make a step – Qeeet Mar 10 '19 at 20:02
  • maybe the only way to solve it is just to pick a conjugate pair and force check if the decision suits. I just would like to know whether I missed some technique – Qeeet Mar 10 '19 at 20:05
  • 4
    This solver shows a step by step solution. It uses some hard techniques, but finds a solution without guessing. – Kruga Mar 11 '19 at 10:01
  • @Kruga, thank you for pointing to that precious web site. I have found all my answers in there. – Qeeet Mar 14 '19 at 08:47

2 Answers2

2

We can say F1, F3 is 9,8 because it is fixed regardless of whether we pick 3 or 4 for A4.

because:

If we choose A4=4, then A3=9 and so F3=8.
For A4=3 the case is (a lot) more extended, but only uses simple eliminations.
First D4=9, E5=3, E3=7, E8=9.
Then D2=3 and so G2=2 and I2=1.
From E5 and I2, I5=6.
From E8 and I5, I8=4.
From I5 and I8, I1=8 so F1=9.

JMP
  • 35,612
  • 7
  • 78
  • 151
0

Hint (a little bit of guessing :-)

If you put 4 into A3 and go through simple elimination steps based on the options you have already figured out, you'll see that it was a wrong move. So A3 must be 9.

ppgdev
  • 1,315
  • 8
  • 10
  • 1
    I had to solve almost all puzzle to check if 4 suits the cell https://i.postimg.cc/hP7vV3Ys/sudoku0001-er1.png there must be easier step – Qeeet Mar 10 '19 at 18:14