2048 is a slide-and-merge puzzle on a 4×4 grid. Every move slides all tiles one direction; equal tiles that collide merge into their sum, and a new 2 or 4 spawns in a random empty cell (weighted about 90/10 toward the 2). You win when a tile reaches 2048 — then you can keep going for 4096 and higher. Reaching 2048 is not luck; it is one disciplined pattern.
The one rule that wins: anchor a corner
Pick a corner — bottom-right is a common choice — and keep your largest tile pinned there for the entire game. In practice this means using only two or three of the four directions and almost never pressing the fourth. If your big tile lives in the bottom-right, drive with Down and Right, use Left sparingly, and treat Up as forbidden except in emergencies.
Build a monotonic chain
Keep the values in your anchor row (or column) descending in order — for example 2048, 1024, 512, 256 lined up along the bottom edge. This is called a monotonic layout. When the chain is intact, one push collapses it like dominoes: the 256 feeds the 512, the 512 feeds the 1024, and so on.
- Fill the anchor row first, largest at the corner.
- Feed new small tiles from the opposite side so they queue up behind the chain.
- Only merge upward into the chain, never break it apart to grab a stray pair.
Avoid the shuffle
The fastest way to lose is pressing all four arrows in a panic. Each wasted direction scatters tiles and spawns another blocker. If a move would not merge anything and would only shuffle the board, look for a better one. Plan two moves ahead: ask what the board looks like after the new tile spawns, not just after your slide.
Past 2048
The win tile is only the halfway point of a good board. To chase 4096 and 8192, the same rules apply with tighter margins — a full board with a broken chain is a dead end. Keep at least one empty cell as breathing room and never let the anchor drift.
Like number puzzles? Minesweeper and Sudoku scratch the same solo-logic itch — the Minesweeper strategy guide is a good next read.