Scoring

2048 scoring and tile math

The score in 2048 is simple, but understanding it helps you make better decisions. Every tile is a power of two, every merge doubles a value, and the points from a move equal the new tiles created by that move.

Merge examples

MergeNew tileScore added
2 + 244 points
4 + 488 points
16 + 163232 points
128 + 128256256 points
1024 + 102420482048 points
8192 + 81921638416384 points

How to use score while playing

Score is earned at merge time

Moving tiles without a merge does not add points. A move can still be useful because it creates space or protects the main row, but the score only increases when two equal values become one larger tile.

Bigger merges matter more than many small merges

Four separate 2 + 2 merges produce 16 total points. One 128 + 128 merge produces 256 points. This is why late-game structure is so important: a clean board can turn earlier small work into much larger score gains.

New tiles are usually small

After a valid move, the game adds a new 2 or 4 in an empty cell. Small tiles are useful fuel when they enter the board near your chain. They become dangerous when they appear between large tiles and block the path to a merge.

Reading progress beyond the score

A high score is nice, but board health predicts whether the next few moves will be safe. Use the score together with the highest tile, empty cells and tile order.