N-Dimensional Chess
I. Displacement Vectors
What is the nicest generalisation of each standard chess piece into an arbitrary -dimensional board ? We seek a definition which is as natural and simple as possible and which matches the piece’s behaviour in two dimensions without privileging this case.
The most natural descriptions are in terms of displacement vectors: a piece may move from some space to another space if and only if the displacement vector lies within its move set (and, of course, if this lies within the board).
Write for the components of this displacement vector. For most pieces, we can decompose where is a direction vector and is an integer scalar. Non-sliding pieces (king, knight) fix ; sliding pieces (rook, bishop, queen) allow any . We classify directions by how many axes they involve: let denote the number of active axes.
II. The Pieces
King
The king moves one step in any direction: horizontally, vertically, or diagonally. In terms of the displacement vector, every component satisfies , and at least one is nonzero. We can write this nicely in terms of the supremum norm: the condition is .
Knight
The knight also does not fit the sliding framework. Its displacement is a permutation of : “move two units in some direction, then one unit in some other direction”. We can characterise this neatly with two norm conditions: and . Together these uniquely pick out the pattern, up to signs and axis choices.
Rook
The rook slides any distance along a single axis. Its direction vector has exactly one nonzero component, so : the displacement takes the form for some basis vector and nonzero integer . We can also characterise this by .
Bishop
In two dimensions, the bishop slides diagonally, moving along both axes simultaneously: . When we enter dimensions, it is unclear whether to generalise this rule as or (or even ).
These three interpretations give rise to three types of bishop, which I shall term the -bishop, the -bishop, and the -bishop. In two dimensions, these are equivalent, but in higher dimensions this breaks down.
Queen
In two dimensions, the queen can slide any distance along a rank, file, or diagonal. There are two natural ways to phrase this:
- Rook Bishop: the queen can make any move that either a rook or a bishop could make.
- Unrestricted-range King: the queen can move in any direction the king can, but for any distance rather than just .
In two dimensions these coincide, but in higher dimensions we get three queen variants from combining the rook with our three bishop variants.
| Queen variant | Directions allowed | Norm characterisation | |
|---|---|---|---|
| -Queen | or | ||
| -Queen | or | ||
| -Queen |
The -queen is the most permissive, with its move set simply containing every displacement of the form for . In fact, this is identical to the ruleset of the King without the distance restriction. The -queen is the most restrictive, only ever moving along one or two axes at a time.
The three queen variants are distinct for . The -queen is a strict superpiece of both others. The -queen and -queen, however, are incomparable: only the -queen can move by , while only the -queen can move by . You can see these in the three-dimensional case below.
Pawn
I’m going to omit the pawn from this analysis: its movement is inherently stateful (having moved or not determines whether it can advance two squares), directional (its movement cannot be characterised by symmetric displacement constraints), and generally peculiar (it captures and advances differently, and en passant exists). All of these make pawns resist clean generalisation into higher dimensions.
III. Summary Metrics
The definitions above tell us what each piece can do, but not how strong it is. For that we need to look at questions like:
- how many squares a piece can threaten in one move,
- how quickly it can traverse the board,
- whether it can even reach every square at all.
The full calculations get quite involved, especially in higher dimensions, so here is a compact summary.
| Piece | Worst-case speed | Average speed (large ) | Average power growth |
|---|---|---|---|
| King | |||
| Knight | |||
| Rook | |||
| -Bishop | |||
| -Bishop | |||
| -Bishop | |||
| -Queen | |||
| -Queen | |||
| -Queen |
Two facts stand out especially strongly:
- The rook, so dominant in ordinary chess, becomes relatively tame in high dimensions because its power grows only linearly in .
- The -bishop is startlingly strong: for , it can reach any square in at most three moves. The proof of this brilliant fact deserves its own page.
For exact formulas, derivations, and average-case calculations, see the full metrics writeup.