2048
Four by four, sixteen cells. You swipe, numbers merge into each other and a new one appears. The game ends when the grid fills up, and it fills up because at some point you started swiping in all four directions instead of three.
How it works
The grid is 4×4. Swipe in a direction and every tile slides that way until it hits the wall or another tile. Two equal tiles that collide merge into one worth double: two 2s make a 4, two 4s make an 8, and so on. After each move a new tile appears in a free cell — almost always a 2, occasionally a 4.
Your score goes up by the value of each merge: joining two 256s is worth 512 points. The game ends when the grid is full and none of the four directions produces a merge. The stated goal is reaching 2048, but the game does not stop there: you can keep going towards 4096 and beyond.
Pocket Games saves both your best score and the highest tile you have reached, which is the statistic that really tells you how you are doing. On a computer you play with the arrow keys, on a phone by swiping.
The strategy: one corner, three directions
Almost the whole game comes down to a single rule: pick a corner and never swipe in the direction that empties it.
Say the bottom-left corner. You only ever swipe down, left and right. Never up. Do that and your biggest tile stays glued to the bottom left while the bottom row sorts itself into descending order: 512, 256, 128, 64. When the moment comes, that row merges in a single chain.
Why it works: the problem in 2048 is not making big numbers, it is not burying them. A 256 with a 2 above it and an 8 below it is a dead number: it occupies a cell and merges with nothing. Always sliding towards the same corner keeps the big numbers on one side and the small ones in front, where they can still merge with each other.
The moves that end your game
- Swiping up out of habit. Once is enough: your sorted row peels off the wall, the big number ends up mid-grid and never comes back to the corner.
- Swiping when there is no need. Every move spawns a new tile. If a direction merges nothing and improves nothing, you have filled the grid for free.
- Chasing the new tile. It appears wherever it likes; reorganising everything to accommodate it is the fastest way to wreck the bottom row.
- Leaving the grid with no empty cells. Free space is the real currency of this game, more than score. With a single empty cell you are already trapped: the next move is forced.
When things go wrong
Sooner or later the sorted row breaks. That is not the end: the way to fix it is to work only on the broken row, with short sideways moves, never using the forbidden direction. If your highest tile has ended up mid-grid, it is usually better to build a new descending row around it and treat the old corner as lost than to try to walk it back.
If the grid is nearly full and nothing merges, look at the small tiles: scattered 2s and 4s are almost always the problem, and the good move is the one that brings two of them together, not the one that shuffles the big numbers.
Frequently asked questions
What is the highest possible score?
Over a million in theory, filling the grid up to the 131072 tile. In practice reaching 2048 is already a good game, and the 4096 tile is a serious result.
Is the new tile really random?
The cell is. The value is almost always a 2, with a minority of 4s. That is the only element of chance in the game: everything else is your decision.
Should I play fast?
No, there is no timer. Long games are lost to a move made without looking, almost never to slowness.
Can I play offline?
Yes, like every game in Pocket Games. You only need a connection to sync your records between devices.
More games to try
See the full list of games, or open Pocket Games in your browser: they are free and you don’t need an account.