Behind the board · The puzzle notebook

How we make a puzzle solvable before you start.

Three construction methods explain why a shuffled board can be a fair challenge instead of an impossible one.

A random-looking board is not automatically a fair puzzle. Some games have arrangements that cannot reach the goal using the legal moves. Rather than shuffle everything arbitrarily and hope, our games use construction methods that preserve at least one solution.

Tile Shift: scramble through legal moves

Tile Shift begins with the solved arrangement: 1 through 15 in order, followed by the empty square. The game then makes 90 legal slides. It avoids immediately reversing the last slide, although longer loops can still occur. If the resulting board happens to be solved, one additional legal move makes it an active puzzle.

Why does this work? Every legal slide can be reversed. If you wrote down the scramble sequence and performed it backward, you would return to the solved board. That establishes a solution without calculating the shortest one. Ninety scrambling moves do not mean the player needs 90 moves; loops can cancel and shorter routes can exist.

Light Switch: build from darkness

The five-by-five grid starts with all lights off. Nine different switches are selected and pressed to create the starting pattern. Pressing those same switches again returns every cell to darkness, because each toggle occurs twice in total.

The order is irrelevant to the final state. Two presses affecting the same cell cancel, even when they come from different switches. This construction guarantees a solution while leaving room for solutions that use a different set or fewer switches.

Sum Select: create the target from the board

The game first generates nine values, each between 1 and 9. It chooses three different tile positions and adds their values to make the target. Those positions are one valid answer, so the target cannot be impossible.

The check accepts any selected group that reaches the target. It does not require the original three positions. That distinction lets you discover a shorter solution, use repeated number values on different tiles, or solve a round with a longer combination.

Fair does not mean equally difficult

A construction can guarantee possibility without controlling difficulty. One Tile Shift scramble may leave useful groups together, while another scatters them. One Sum Select target may have an obvious two-number answer, while another calls for more searching. We do not assign difficulty ratings that the generator has not measured.

Not every game promises a winning board

Memory Match has all eight pairs available from the start, so you can eventually uncover them. Number Merge works differently: new random tiles appear as you play, and the game does not guarantee that every sequence of choices and spawns reaches 2048. Line Three is an adversarial game; a draw can be the best achievable result against correct defense.

Use construction as a learning idea

You can make a small paper puzzle the same way: start at a goal and apply reversible changes. Give the resulting state to someone else while keeping your sequence as one solution. The challenge comes from finding a path back, and the construction gives you a concrete reason to know that a path exists.