Is there a set of rules that translates any program into a configuration of finite pieces on an infinite board, such that if black and white plays only legal moves, the game ends in finite time iff the program halts?

The rules are the same as ordinary chess minus the 50 move rule, exchanges and castling.

And what is the minimum number of different types of pieces (i.e. the simplest game) that is needed for a chess-like game to be Turing-complete? (Each type of piece having a set of allowed moves that is invariant under translations)


The classic reference on this is the paper "Computing a Perfect Strategy for nxn Chess Requires Time Exponential in n" by Aviezri Fraenkel and David Lichtenstein; unfortunately, I can't find the (30-year-old!) paper online anywhere and while I think I have the proceedings it came from, it's buried in a pile of boxes. Of course, your board isn't finite, but your initial piece configuration is; this means that if there's any computable bound on the needed board size to resolve an initial position, then chess isn't Turing-complete. (If the status of all positions of diameter $d$ could be determined using boards of size no more than $f(d)$, then they can be determined in $\mathrm{EXP}(f(d))$ time by the EXPTIME completeness result, and thus wouldn't be Turing-complete). I vaguely recall seeing something about such a result, but unfortunately some quick searches aren't turning anything up. The expert on the mathematics of chess is Noam Elkies, so hopefully he can spot this and chime in...


If you allow for a board with an infinitely repeating looping section (to emulate the infinite tape), I'm pretty sure you can develop a turing complete chess board.

Pawns probably can't be used (because they can't be moved back to loop a calculation) and queens probably have too much movement range to be useful as well. You'll probably need "walls" on your board (impassable squares) and possibly even multiple kings (all of which can be checkmated).

Suggested computation method: white is 1 move away from having his king checkmated and must check the black king on every move. The black king is moved around various arrangements of walls, white rooks, bishops and knights which perform the various operations required for calculation. Calculation halts when the black king comes to a dead end and can never win or can always win.