Good Sudoku puzzles can be solved without having to resort to guessing, but to do so requires you to learn strategies that allow you to simplify the board and find the unique solutions to each cell. These pages will cover a number of these strategies using the algorithms implemented by the Sudoku Tutor app.

Common Sudoku Terms

  • Board is the 9x9 grid of cells which represents the puzzle.
  • Cell is the smallest unit of a Sudoku puzzle.
  • Box is a 3x3 group of cells. Also called Region.
  • Box Numbering starts at 1 in the top left corner and goes right and then down.
  • Box Row - Box 1, 2, 3 form Box Row 1. Box 4, 5, 6 form Box Row 2. Box 7, 8, 9 form Box Row 3.
  • Box Column - Box 1, 4, 7 form Box Column 1. Box 2, 5, 8 form Box Column 2. Box 3, 6, 9 form Box Column 3.
  • Row is a horizontal stack of cells.
  • Row Numbering starts at 1 with the top row, up to 9 for the bottom row.
  • Column is a vertical stack of cells.
  • Column Numbering starts at 1 with the left most column, up to 9 for the right most column.
  • Group or Area, is a collection of cells in which a number cannot be repeated. This can be one of rows, columns or boxes.
  • Given is a value that is part of the initial puzzle definition. Displayed in black in Sudoku Tutor.
  • Candidate also called Pencil Mark, is a possible value for a given unsolved cell. Displayed as small digits.
  • Value is the player's solution for a cell. Displayed in blue in Sudoku Tutor.
  • Wrong Value is the player's wrong solution for a cell. Displayed in bold red in Sudoku Tutor is Show Errors setting is enabled.
  • Solution is the actual solution value for a cell.
  • Peers of a cell, are the group of cells in which a number cannot be repeated. The peers of the selected cell include the row, the column and the box the cell is in.
  • Intersection of multiple groups of cells is the overlap cells between two or more groups. For example, the intersection of the peers of two cells is often used in solver algorithms to remove candidates.

Strategies

The links below provide a detailed description of each strategy, as well as the ability to try them in the Sudoku Tutor app, so that you can practice each skill:

  1. Single Search Find all the cells on the board which can be only 1 value. This is the only strategy which does not require pencil marks.
  2. Pencil Marks Find all the candidates for each unsolved cell.
  3. Naked Single Find cells that can only have only one candidate.
  4. Hidden Single Find groups in which a particular digit has only one candidate cell.
  5. Naked Pair Find two cells that have only the same two candidates and are in the same group.
  6. Hidden Pair Find two cells that have the only two candidates for the same digits and are in the same group.
  7. Naked Triple Find three cells that have only the same three candidates and are in the same group.
  8. Hidden Triple Find three cells that have the only three candidates for the same digits and are in the same group.
  9. Naked Quad Find four cells that have only the same four candidates and are in the same group.
  10. Hidden Quad Find four cells that have the only four candidates for the same digits and are in the same group.
  11. Group Bound Find candidates which are restricted by a group, hence removing candidates from an intersecting group.
  12. X-Wing Find a digit in an x pattern of cells to elliminate candidates from rows and columns.
  13. XY-Wing Find 3 connected cells with exactly 2 candidates each.
  14. XYZ-Wing Find 3 connected cells with 3 candidates in the anchor cell and 2 in the wings cell.
  15. WXYZ-Wing Find a common candidate in 4 connected cells and elliminate it from the intersecting peers.
  16. Swordfish Find a 3x3, nine cell pattern with a candidate in 3 different rows/columns.
  17. Singles Chain Find a chain of single candidates to find which cells are the solution.
  18. XY-Chain Find a chain of cells with 2 candidates connected by a common candidate, to elliminate candidates where the chain starts and ends.
  19. X-Cycles Find a loop of single candidates by chaining alternating strong and weak links.