Checkers 8
Next Blue
Winner
Status Blue places first.

Blue bin

8

Click an empty square, or drag a checker from the bin.

Red bin

8

Move history

  1. No moves yet.

Rules reference

How Pop Tac Toe works

Basic turn

Players alternate. Place a checker on an empty square, or make a permitted board move. After the checker lands, every occupied neighboring square tries to move one more square directly away from it. All successful pushes are calculated from the same snapshot and then applied together.

Winning

Lines are checked after the pop. Three matching checkers in a horizontal, vertical, or diagonal line win. If both colors form a line on the same turn, the result is a draw.

Edge rules

Reincarnation returns a fallen checker to its owner’s bin. Ringout removes it. Blocked prevents the fall. Torus wraps both directions. Klein wraps left/right normally and twists the column when crossing the top or bottom.

Movement

Movement may be disabled, enabled only after a player’s bin is empty, or always enabled. King, Rook, Bishop, Queen, and Anywhere movement are available. Movement itself does not wrap across an edge; the pop follows the selected edge surface.

Draws

A draw occurs when both players form lines together, no legal move remains, or a complete position repeats. Ringout can also produce a draw if both players are reduced to two surviving checkers at once.

Computer ruleset

The research engine is optimized for eight checkers, Torus edges, Continue, movement when the current player’s bin is empty, King movement, no zero move, and no jumps.

Proof architecture

From a solver certificate to a Lean theorem

1

Freeze the ruleset

Give the supported configuration a versioned identifier and make the C++, browser, certificate generator, and Lean model agree on every transition.

2

Generate a certificate

The fast C++ solver explores the reachable game graph and records, for each claimed winning state, a winning move and enough successor information for independent checking.

3

Write a small checker

Lean reads compact certificate entries, recomputes legal moves and state transitions, and rejects malformed, missing, or contradictory entries.

4

Prove checker soundness once

Prove that whenever the checker accepts a complete certificate, the mathematical force-win predicate holds for every accepted state.

5

Verify chunks bottom-up

Split the large table by remaining placement rank and symmetry class so each Lean module checks a manageable block whose successors were already verified.

6

Publish the theorem and manifest

Record the ruleset ID, certificate hash, solver commit, Lean version, checker result, and final theorem about the initial position.