Rules

2048 has simple rules that create surprisingly deep gameplay. Here's a complete breakdown.

The Objective

Create a tile with the value 2048 by sliding and merging numbered tiles on a 4×4 grid.

Starting Position

Every game begins the same way:

  1. The board starts empty
  2. Two tiles appear in random positions
  3. Each starting tile is either a 2 (90% chance) or 4 (10% chance)

Movement Rules

When you make a move (up, down, left, or right):

  1. All tiles move in that direction simultaneously
  2. Each tile slides until it hits:
    • The edge of the board
    • Another tile it cannot merge with
  3. After movement, one new tile spawns in an empty cell

Merging Rules

The core mechanic of 2048 is tile merging:

  • Two tiles with the same value merge when they collide
  • They combine into one tile with double the value
  • Each tile can only merge once per move

Important

If you have three tiles of the same value in a row (e.g., 2-2-2), only the two tiles furthest in the direction of movement will merge. The third tile will slide into position next to the new merged tile.

Example

Moving left with tiles: 4 | 4 | 4 | empty

Result: 8 | 4 | empty | empty

The first two 4s merge into 8, and the third 4 slides next to it.

Spawning Rules

After every valid move:

  • A new tile appears in a random empty cell
  • The new tile is 2 (90% probability) or 4 (10% probability)
  • If no cells are empty, no tile spawns (this means game over is near)

Win Condition

You win when any tile reaches the value 2048.

However, you can continue playing after winning to:

  • Achieve higher scores
  • Create tiles beyond 2048 (4096, 8192, etc.)
  • Challenge yourself to reach the theoretical maximum

Loss Condition

You lose when:

  1. The board is completely filled with tiles
  2. AND no two adjacent tiles have the same value

This means no valid moves remain, and the game cannot continue.

Warning

A full board doesn't mean game over! If any adjacent tiles can merge, you can keep playing.

What Doesn't Count as a Move

A move is only valid if something changes. These don't count:

  • Moving toward a wall when all tiles are already against it
  • Attempting to move when no tiles can slide or merge

If nothing can change, the game won't register the move or spawn a new tile.

Summary

RuleDescription
Board size4×4 (16 cells)
Starting tiles2 tiles (value 2 or 4)
MovementAll tiles slide in chosen direction
MergingSame-value tiles combine, doubling value
SpawningOne new tile (2 or 4) per move
WinCreate 2048 tile
LoseNo valid moves remaining

Next Steps