About
Lights Out is a logic puzzle where a grid of lights, each either on or off, must all be turned off. Pressing a light toggles it and its orthogonal neighbors. The puzzle is that every move affects multiple lights simultaneously, creating a ripple effect that requires careful planning to resolve.
The mathematics of Lights Out is elegant. The game can be analyzed using linear algebra over the field of two elements (on/off = 1/0). Every starting configuration is either solvable or not, and the minimum solution length can be calculated. In practice, most people discover this through trial and error — which is itself a satisfying process.
The browser version presents progressively harder starting configurations. Each puzzle takes 3–10 minutes and rewards a combination of systematic thinking and intuition.
How to Play
- Click any light to toggle it and its four orthogonal neighbors (up, down, left, right).
- Turn all lights off to solve the puzzle.
- No light on the edge has neighbors off the grid — they only affect their in-grid neighbors.
Tips
- Work systematically row by row — solve the top row first, then use the next row to fix what that broke.
- Some configurations require multiple passes; don't assume one pass is sufficient.
- The "chase the lights" technique (fixing each row based on the previous) solves most puzzles in two passes.
History
Lights Out was manufactured by Tiger Electronics and released in 1995 as a physical handheld device with 25 lights in a 5×5 grid. It became a minor toy sensation and has been continuously analyzed mathematically. The original device came with 50 preset puzzles. Researchers have solved the general n×n Lights Out problem and determined the exact number of solvable configurations for various grid sizes. The game has been recreated in browser form countless times.