Back to Blog
Lights Out Strategy Logic Puzzle

Lights Out Puzzle: The Complete Solver Guide & Strategy

Puzzle PK Team 2026-08-26 10 min read

Lights Out Puzzle: The Complete Solver Guide & Strategy

What Is Lights Out?

Lights Out (关灯游戏) is one of the most elegant puzzles ever put on a screen: a square grid of glowing lights — from a compact 4×4 up to a demanding 8×8 on Puzzle PK — and one rule: tap a light and it flips, together with every orthogonal neighbor (up, down, left, right). The goal is just as simple: turn every light off.

Beneath the simplicity hides real mathematics. Lights Out is a classic of linear algebra over GF(2), the number system where 1 + 1 = 0. Each light is a bit, each tap is a vector, and "can this board be solved?" becomes "does this pattern lie in the span of the tap vectors?" That is why some boards fall apart in seconds while others shrug off a dozen random taps — and why one technique, the Chase Method, works on every board from 4×4 to 8×8.

You do not need the math to play. But a little of it turns frantic tapping into a reliable system: the rules, the chase, the parity behind it, the advanced corrections, and how to turn all of it into race speed.

How to Play

The rules fit in one sentence, but they deserve a slow read:

  • The board is an n×n grid. On Puzzle PK: 4×4, 5×5, 6×6, 7×7, and 8×8.
  • Every cell holds a light that is either ON or OFF.
  • Tapping a cell toggles that cell AND its orthogonal neighbors — directly above, below, left, and right. Diagonal neighbors are NOT affected.
  • Goal: turn every light OFF. Only the set of cells you tap matters, never the order.

Three consequences worth locking in before your first game:

  1. Tapping the same cell twice cancels out. A solution is really a set of cells, each pressed at most once. Extra presses always hurt.
  2. Borders matter. A corner tap flips 3 cells (itself + 2 neighbors), an edge tap flips 4 (itself + 3), an interior tap flips 5 (itself + all four). This is where the difficulty hides.
  3. Board size changes the puzzle's nature. On 6×6, 7×7, and 8×8 every pattern is solvable. On 4×4 and 5×5 only a fraction is: 1 in 16 boards on 4×4, 1 in 4 on 5×5. Some patterns are simply dead — more later.

The Chase Method: The Core Solving Algorithm

The Chase Method — light chasing — is the one technique every player must know. It pushes the problem down the board, one row at a time, until only the last row remains.

The key observation: a tap in row k+1 flips exactly one cell of row k — the one directly above it. It never touches the neighboring cells in row k. So you can erase rows from the top down, without ever disturbing rows you have already fixed.

The algorithm:

  1. Look at the top row; for every ON light, tap the cell directly below it, in row 2.
  2. Row 1 is now dark — each ON light was flipped exactly once by the tap below it.
  3. Repeat with row 2: for every ON light, tap the cell below it in row 3. Row 2 goes dark.
  4. Keep chasing. When you have fixed row n−1 by tapping in row n, every row above the last is dark, and the bottom row holds whatever is left.

Dark bottom row → solved: your taps are the solution. Lit bottom row → you have not failed — you learned something precise (next section).

A worked example on 4×4 — the all-ON board:

●●●●      ○○○○      ○○○○      ○○○○
●●●●  →   ●○○●  →   ○○○○  →   ○○○○
●●●●      ○○○○      ●●●●      ○○○○
●●●●      ●●●●      ○●●○      ○○○○

Chase row 1: all four lights are ON, so press all of row 2. Row 1 goes dark; row 2 collapses to ●○○●; row 3 stays fully lit. Chase row 2: press cells 1 and 4 of row 3. Row 2 goes dark; row 4 becomes ○●●○. Chase row 3: press all of row 4. All dark — 10 taps total: row 2 completely, row 3's two end cells, then row 4 completely.

Notice the discipline: after a row is dark, never tap in it again — each pass presses only the row directly below the one being cleared. That is the whole method.

Why the Chase Works: Neighbor Counts and Parity

The chase is not a trick — it is the puzzle's own logic. Two facts make it work.

Fact 1: every tap flips a small, predictable set. Corner tap: 3 cells. Edge tap: 4. Interior tap: 5. A light ends OFF exactly when it has been flipped an even number of times — parity, in GF(2), where two flips cancel. The whole board is a bookkeeping exercise in parity.

Fact 2: a tap in row k+1 reaches exactly one cell of row k. Pressing (k+1, c) toggles (k, c) — and nothing else in row k; its other effects stay in rows k+1 and k+2. That is what makes "press below every ON light" a perfect row eraser.

The bottom row is where the chase cannot go: there is no row below it to press, so its final state is decided entirely by the initial pattern plus any top-row choices you make. That is why every Lights Out puzzle is won or lost on the last row.

Advanced: Correcting the Last Row

After the first chase, the bottom row is a message: it tells you which top-row cells you should have pressed first. The mapping is fixed per board size — and for the classic 5×5 it is small enough to memorize.

On 5×5, chasing an all-dark board after pressing any top-row pattern can only ever produce 8 of the 32 possible bottom rows. Full correction table (read left to right, 1 = press, 0 = leave):

bottom row  →  press top row
 00000          00000
 00111          00010
 01010          00111
 01101          00101
 10001          00011
 10110          00001
 11011          00100
 11100          00110

How to use it: chase from top to bottom; read the bottom row as a five-bit pattern; find it in the table and press the matching top-row cells; chase again — this time the bottom row ends dark.

The other 24 bottom rows are absent on purpose: they mean unsolvable boards. A chase that ends in an unlisted bottom row is a dead board — no amount of pressing can save it.

Example: the all-ON 5×5. Chase once and the bottom row reads 10001. The table says press top-row cells 4 and 5 (00011), then chase again. Fifteen taps later the board is dark.

On 4×4 the correction is friendlier still: the chase never needs one. Pressing top-row cells before chasing has no effect on the 4×4 bottom row at all — a lit bottom row after a clean chase means the board is unsolvable; a dark one means you are done. That is why 4×4 is the perfect training board: the chase alone is the entire game.

On 6×6, 7×7, and 8×8 every board is solvable, but the tables grow to 64, 128, and 256 entries — too many to memorize. There the practical skill is pattern feel: chase, read the bottom row, press a candidate top-row pattern, re-chase, refine. Since the mapping is one-to-one on these sizes, a bottom row you have seen before calls for the exact correction you used last time.

Advanced: Patterns, Quiet Patterns, and Unsolvable Boards

Quiet patterns (5×5). On 5×5 there are "quiet patterns" — press sets that change absolutely nothing. The two basic ones (press every ●):

.###.      #.#.#
#.#.#      #.#.#
##.##      .....
#.#.#      #.#.#
.###.      #.#.#

Press either on any board and nothing changes. Two consequences: solutions on 5×5 are never unique — every solvable board has exactly 4 different press sets (add any combination of quiet patterns to a solution). And in a race, the fewest-taps version of a solution is a real skill: every extra quiet-pattern press is pure waste.

Pattern recognition. Some shapes repeat constantly; knowing them saves seconds:

  • All-ON: on 4×4, plain chase solves it in 10 taps; on 5×5, the 10001 correction plus 15 taps.
  • A single lit corner: dead on 4×4 and 5×5 — don't waste time. On 6×6+ it is solvable.
  • The checkerboard (alternating lights): solvable on 5×5 in 10 taps.
  • Symmetric boards: the solution usually mirrors the board — solve one half, mirror the taps.

Unsolvable boards. On 4×4, 15 of every 16 random boards are unsolvable; on 5×5, 3 of every 4. The correct move is to stop, not tap harder. On Puzzle PK you will not meet them — boards are generated solvable in Endless and Speed PK alike, so a lit bottom row after a clean chase always means a chase error: re-trace your rows and find the missed light. On a random generator, re-roll instead of fighting a dead board.

Solving from the last row backwards. The puzzle is symmetric under 180° rotation, so every technique works upside-down. Chase up instead: for every ON light in the bottom row, press the cell above it in row n−1, and work your way to the top. Some players read corrections more easily in the top row. The parity logic is identical either way — use whichever you execute faster.

Common Mistakes and Practice Tips

Mistakes that cost the most time:

  1. Tapping diagonals. Diagonals are not neighbors — a tap only reaches the four compass directions.
  2. Re-tapping a fixed row. Once a row is dark, never press in it again; fix row k with row k+1, then move on.
  3. Pressing the same cell twice. Two presses cancel: two wasted clicks, zero progress.
  4. Forgetting that order does not matter. Only the set of pressed cells counts. Re-read the current row's new state before each press.
  5. Fighting dead boards. On 4×4 and 5×5, recognize unsolvable bottom rows and stop immediately.
  6. Panicking in Speed PK. The winner is the first to solve, not the first to click. A calm two-pass chase beats frantic random tapping every time.

Practice that raises your speed:

  • Master 4×4 first. The chase is the whole game there; 10–20 Endless rounds make "press below every ON light" automatic.
  • Memorize the 5×5 table. Eight rows, five bits — the classic game's entire secret.
  • Practice the two-pass habit. Pass 1: chase and read. Pass 2: correct and re-chase. Speed comes from a flawless pass 1, not from skipping it.
  • Collect patterns. Note the bottom row of familiar boards (all-ON, checkerboard, corner clusters) so corrections come without thinking.
  • Time yourself in Endless mode, then bring the same skills to Speed PK, where your best times are tracked and the clock is the opponent.

Why Play Lights Out Online at Puzzle PK

  • Endless single mode. Any size from 4×4 to 8×8, at your own pace — the perfect training ground for the chase and the tables.
  • Speed PK mode. A real-time race: the same solvable board, two players, first to solve wins. The chase is precisely the competitive skill — the player who reads the bottom row and applies the correction without hesitation wins. No downloads, no setup: open the browser and race.
  • Every board is fair. Boards are generated solvable, so defeats are learning opportunities, never lottery losses.
  • Records. Your fastest clears are tracked, so you can watch your chase times drop as the tables sink in.

Lights Out looks like a casual clicker, but it is a logic puzzle with real depth — hard mathematics hidden inside a friendly grid. Learn the chase, memorize the corrections, and you will go from random tapping to solving 5×5 boards in seconds. Then take it to Speed PK and prove it against a live opponent.

PK

Puzzle PK Team

The Puzzle PK Team is a group of puzzle enthusiasts crafting free, high-quality logic games and brain-training guides for players of all ages. Got feedback or ideas? We would love to hear from you.

More about Puzzle PK

Ready to Challenge Your Brain?

Play Free Educational Games