2048 on a 3×3 board

2048 Lite

3×3

Goal 256 on a 3×3 board

Score

0

Best

0

2 at row 1, column 1. 2 at row 1, column 2

Use arrow keys, WASD, or swipe to move the board.

This run

Best 0

2

Highest tile

Best combo

128

Next milestone

Swipe to move

The 3×3 board has nine squares and a goal of 256, because a 2048 tile cannot be built on a board this small. Everything else — sliding, merging once per move, a new tile after every valid move — is unchanged.

The ceiling

Why 2048 is unreachable on 3×3

To create any tile you must hold two of the tile below it at the same moment. A 2048 needs two 1024s on the board together; each 1024 needed two 512s; each 512 needed two 256s. Work that chain downward and the board has to hold a whole descending ladder at once — 2048’s ladder is simply longer than nine squares can carry.

The same counting argument is what caps a 16-square board at 131,072. On nine squares it caps the board at 1024, one doubling short of 2048. So 2048 is not merely difficult here; it is arithmetically out of reach, which is why the winning tile drops to 256.

In practice the ceiling is lower still. We ran 3,000 games on this board with the same corner-and-lookahead bot used in our strategy study, and it never once built anything above 256: it reached 128 in 60.7% of games, 256 in 5.6%, and 512 in none of them. A 256 here is a genuinely good result.

What changes

Nine squares leave no staging room

On 4×4 the row above your snake is a staging area: it holds the tiles that will feed the big row next. A 3×3 board has no such row to spare. With nine squares and a new tile arriving after every move, you are almost always one move from a full board.

  • Nothing is built in reserve. Every merge has to be one you can already see, because there is no room to set up a merge two moves out.
  • An empty square is worth more than a merge. On 3×3 the failure mode is almost always suffocation, not a badly ordered row.
  • The corner still matters. Even on nine squares, letting the biggest tile wander into the middle blocks two directions at once.

Tactics

What actually works on 3×3

Play for space first and structure second — the reverse of the 4×4 advice. On a board this small, the move that opens a square is usually better than the move that scores.

  • Take every merge on the corner row. There is no benefit to saving a pair for later when later means a full board.
  • Use two directions, hard. With three columns, one reversal can scatter the whole board. Left and down will carry most of a run.
  • Watch the third column. It is the one that fills first and the one that traps your corner when it does.
  • Undo is worth more here. The same three undos cover a much shorter game, so one well-spent undo is a bigger share of the run.

The corner habit, explained on the full-size board.

Compare all five boards · The rules of 2048 · Strategy