2048 tips
2048 merge rules: plan your next move
In 2048, equal tiles merge toward the direction of your move. A tile created by a merge cannot merge again during that same move. Read the row from the edge you are moving toward, then check where its largest tile will finish.
Why four 2s become two 4s, not one 8
Slide a row of 2, 2, 2, 2 to the left. The first pair becomes a 4 and the second pair becomes another 4. Those new tiles stay separate until your next move. You have freed two spaces in that row, not three.
The same restriction applies when a new tile lands beside an existing tile of the same value. A row of 4, 4, 8, empty becomes 8, 8, empty, empty. It does not become 16 immediately.
| Starting row | After moving left | Reason |
|---|---|---|
| 2 · 2 · 2 · 2 | 4 · 4 · . · . | Each pair merges once. |
| 4 · 4 · 8 · . | 8 · 8 · . · . | The new 8 cannot merge again yet. |
| 2 · . · 2 · 4 | 4 · 4 · . · . | Empty spaces do not stop matching tiles. |
| 2 · 4 · 2 · . | 2 · 4 · 2 · . | The 4 prevents the two 2s from meeting. |
Read from the edge you are moving toward
With three equal tiles, direction decides which pair joins. Moving 2, 2, 2, empty to the left produces 4, 2, empty, empty. Moving that same starting row to the right produces empty, empty, 2, 4.
Before swiping, picture the compressed row with its gaps removed. Pair equal neighbours from the destination edge. This is more useful than counting matching numbers anywhere on the board, because another tile can keep a pair apart.
Use merge order to protect your corner
Keeping your largest tile in a corner gives the board a consistent direction. If you use the bottom-left corner, a bottom row such as 128, 64, 32, 16 is easier to keep organised than a row with those values scattered.
A left move keeps that row against the left edge, but it also changes the three rows above it. Inspect those rows before choosing the move. A corner plan is a useful habit, not a promise that every board can be won.
Do not ban one direction absolutely. When the board is nearly full, a move that temporarily disturbs your corner may be the only legal way to continue. Look for a way to restore the large tile after making space.
Leave room for the tile that appears afterward
The row examples above stop before the random tile appears. In the hosted version, a successful move then adds a 2 or a 4 to an empty cell. That new tile can occupy a space you planned to use.
Judge a move by the resulting board, not only by its score. A merge that leaves several usable gaps can be easier to follow than a larger merge that traps small tiles between high values.
- Check the destination of the largest tile.
- Trace each affected row or column.
- Keep a follow-up move available after a new tile appears.
Common questions
Can one tile merge twice in a single 2048 move?
No. A tile created by a merge cannot merge again until a later move.
Can 2, 4, 2 merge when moved left?
No. The 4 sits between the two 2s and prevents them from touching.
Does keeping a corner guarantee a win?
No. It helps organise the board, but random tiles and earlier decisions can still leave you without a useful move.
Rules and sources
Examples checked against the game logic used on PCder. These tips explain decisions, not guaranteed outcomes.