vote up 9 vote down star
2

Dear Stack Overflow community,

I was recently in a discussion with a non-coder person on the possibilities of chess computers. I'm not well versed in theory, but think I know enough.

I argued that there could not exist a deterministic Turing machine that always won or stalemated at chess. I think that, even if you search the entire space of all combinations of player1/2 moves, the single move that the computer decides upon at each step is based on a heuristic. Being based on a heuristic, it does not necessarily beat ALL of the moves that the opponent could do.

My friend thought, to the contrary, that a computer would always win or tie if it never made a "mistake" move (however do you define that?). However, being a programmer who has taken CS, I know that even your good choices - given a wise opponent - can force you to make "mistake" moves in the end. Even if you know everything, your next move is greedy in matching a heuristic.

Most chess computers try to match a possible end game to the game in progress, which is essentially a dynamic programming traceback. Again, the endgame in question is avoidable though. -- thanks, Allan

Edit: Hmm... looks like I ruffled some feathers here. That's good.

Thinking about it again, it seems like there is no theoretical problem with solving a finite game like chess. I would argue that chess is a bit more complicated than checkers in that a win is not necessarily by numerical exhaustion of pieces, but by a mate. My original assertion is probably wrong, but then again I think I've pointed out something that is not yet satisfactorily proven (formally).

I guess my thought experiment was that whenever a branch in the tree is taken, then the algorithm (or memorized paths) must find a path to a mate (without getting mated) for any possible branch on the opponent moves. After the discussion, I will buy that given more memory than we can possibly dream of, all these paths could be found.

flag

63% accept rate

14 Answers

vote up 21 vote down

"I argued that there could not exist a deterministic Turing machine that always won or stalemated at chess."

You're not quite right. There can be such a machine. The issue is the hugeness of the state space that it would have to search. It's finite, it's just REALLY big.

That's why chess falls back on heuristics -- the state space is too huge to even enumerate much less search for every perfect move along every course of every possible game.

Openings are scripted to get you to a mid-game that gives you a "strong" position. Not a known outcome. Even end games -- when there are fewer pieces, are hard to enumerate to determine a best next move. Technically they're finite. But the number of alternatives is huge. Even a 2 rooks + king has something like 22 possible next moves. And if it takes 6 moves to mate, you're looking at 12,855,002,631,049,216 moves.

Do the math on opening moves. While there's only about 20 opening moves, there are something like 30 or so second moves, so by the third move we're looking at 360,000 alternative game states.

But chess games are (technically) finite. Huge, but finite. There's perfect information. There are defined start and end-states, There are no coin-tosses or dice rolls.

link|flag
All endgames with 6 pieces or less have been enumerated and solved. See tablebase and bitbase here: en.wikipedia.org/wiki/Tablebase. For example, there's a KQNKRBN endgame where 517 moves are required to force a mate! But the total number of chess games is around (10^(10^50)). – RoadWarrior Jan 3 '09 at 15:00
Scripted to win is one thing. Exhaustively enumerated is a different thing. Either way, the information is perfect -- everything is known -- the game is deterministic by definition. – S.Lott Jan 3 '09 at 20:03
The weather is also theoretically deterministic - but this is another problem that we'll never "solve" because of the number of variables involved and its non-linearity. – RoadWarrior Jan 5 at 14:45
@RoadWarrior: disagree. Random applies to weather. God rolls dice. Random doesn't apply to chess -- by definition. Chess has complete information. Weather has quantum effects -- it can't be complete. – S.Lott Jan 5 at 15:09
What makes the weather difficult to forecast are the chaotic non-linear factors, not any quantum effects. Given enough computing power and knowledge, We could in theory create a "correct" weather forecast. – RoadWarrior Jan 5 at 17:22
show 8 more comments
vote up 11 vote down

It has been proven for the game of checkers that a program can always win or tie the game. That is that there is no choice of moves that one player can make that force the other into loosing.

The researchers spent almost two decades going through the 500 billion billion possible checkers positions, which is still an infinitesimally small fraction of the number of chess positions, by the way. The checkers effort included top players, who helped the research team program checkers rules of thumb into software that categorized moves as successful or unsuccessful. Then the researchers let the program run, on an average of 50 computers daily. Some days, the program ran on 200 machines. While the researchers monitored progress and tweaked the program accordingly. In fact, Chinook beat humans to win the checkers world championship back in 1994.

Yes, you can solve chess, no, you won't any time soon.

link|flag
That's really cool. I didn't know Checkers was solved too. – Cybis Nov 18 '08 at 1:49
Kibbee got it in first :) – BCS Nov 18 '08 at 1:54
"[Y]ou won't an y time soon" is a bit of an understatement. Besides the limit of the expected duration of the universe, you've got a storage issue-- the number of states in Chess far exceeds the 500 billion billion of checkers; in fact, it exceeds the number of particles in the universe. – Michael Dorfman Nov 24 '08 at 8:55
vote up 8 vote down

This is not a question about computers but only about the game of chess.

The question is, does there exist a fail-safe strategy for never losing the game? If such a strategy exists, then a computer which knows everything can always use it and it is not a heuristic anymore.

For example, the game tic-tac-toe normally is played based on heuristics. But, there exists a fail-safe strategy. Whatever the opponent moves, you always find a way to avoid losing the game, if you do it right from the start on.

So you would need to proof that such a strategy exists or not for chess as well. It is basically the same, just the space of possible moves is vastly bigger.

link|flag
So, who had the urge to downvote my answer? Is there anything wrong in it? Want to get yourself in front? – ypnos Nov 18 '08 at 21:04
@ypnos, I didn't down vote your answer at all. I just commented to say not to let random down-voters get you down. You've gained 30 rep and only lost 1. Also, +1 ;) – Simucal Jan 16 at 3:31
Thank you for your comment! – ypnos Jan 17 at 16:34
vote up 4 vote down

I know next to nothing about what's actually been discovered about chess. But as a mathematician, here's my reasoning:

First we must remember that White gets to go first and maybe this gives him an advantage; maybe it gives Black an advantage.

Now suppose that there is no perfect strategy for Black that lets him always win/stalemate. This implies that no matter what Black does, there is a strategy White can follow to win. Wait a minute - this means there is a perfect strategy for White!

This tells us that at least one of the two players does have a perfect strategy which lets that player always win or stalemate.

There are only three possibilities, then:

  • White can always win if he plays perfectly
  • Black can always win if he plays perfectly
  • One player can win or stalemate if he plays perfectly (and if both players play perfectly then they always stalemate)

But which of these is actually correct, we may never know.

The answer to the question is yes: there must be a perfect algorithm for chess, at least for one of the two players.

link|flag
+1, That is a really great way of explaining it. I can't believe I never thought of that! – Zifre Apr 15 at 23:11
vote up 3 vote down

Your end of the argument is supported by the way modern chess programs work now. They work that way because it's way too resource-intense to code a chess program to operate deterministically. They won't necessarily always work that way. It's possible that chess will someday be solved, and if that happens, it will likely be solved by a computer.

link|flag
vote up 3 vote down

Some games have, in fact, been solved. Tic-Tac-Toe is a very easy one for which to build an AI that will always win or tie. Recently, Connect 4 has been solved as well (and shown to be unfair to the second player, since a perfect play will cause him to lose).

Chess, however, has not been solved, and I don't think there's any proof that it is a fair game (i.e., whether the perfect play results in a draw). Speaking strictly from a theoretical perspective though, Chess has a finite number of possible piece configurations. Therefore, the search space is finite (albeit, incredibly large). Therefore, a deterministic Turing machine that could play perfectly does exist. Whether one could ever be built, however, is a different matter.

link|flag
vote up 2 vote down

For the record, there are computers that can win or tie at checkers. I'm not sure if the same could be done for chess. The number of moves is a lot higher. Also, things change because pieces can move in any direction, not just forwards and backwards. I think although I'm not sure, that chess is deterministic, but that there are just way too many possible moves for a computer to currently determine all the moves in a reasonable amount of time.

link|flag
It can be done, but can it be done on a computer we are likely to ever see? – BCS Nov 18 '08 at 1:43
Probably not in our lifetime. All of the really interesting research in the field is being done in the game Go. :) – Bill the Lizard Nov 18 '08 at 1:49
IIRC most 6 year olds can be any computer at Go. – BCS Nov 18 '08 at 1:56
It took 18 years to calculate the 500 Billion positions for perfect checkers. Cool stuff cs.ualberta.ca/~chinook – paul.richardson Nov 18 '08 at 2:38
@BCS: Not anymore. The best Go programs are beating dan (professional) level players now. – Bill the Lizard Nov 18 '08 at 2:40
show 3 more comments
vote up 2 vote down

From game theory, which is what this question is about, the answer is yes Chess can be played perfectly. The game space is known/predictable and yes if you had you grandchild's quantum computers you could probably eliminate all heuristics.

You could write a perfect tic-tac-toe machine now-a-days in any scripting language and it'd play perfectly in real-time.

Othello is another game that current computers can easily play perfectly, but the machine's memory and CPU will need a bit of help

Chess is theoretically possible but not practically possible (in 2008)

i-Go is tricky, it's space of possibilities falls beyond the amount of atoms in the universe, so it might take us some time to make a perfect i-Go machine.

link|flag
vote up 2 vote down

As a chess programmer from the 1970's, I definitely have an opinion on this. What I wrote up about 10 years ago, still is basically true today:

"Unfinished Work and Challenges to Chess Programmers"

Back then, I thought we could solve Chess conventionally, if done properly.

Checkers was solved recently (Yay, University of Alberta, Canada!!!) but that was effectively done Brute Force. To do chess conventionally, you'll have to be smarter.

Unless, of course, Quantum Computing becomes a reality. If so, chess will be solved as easily as Tic-Tac-Toe.

In the early 1970's in Scientific American, there was a short parody that caught my attention. It was an announcement that the game of chess was solved by a Russian chess computer. It had determined that there is one perfect move for white that would ensure a win with perfect play by both sides, and that move is: 1. a4!

link|flag
vote up 1 vote down

I think you are dead on. Machines like Deep Blue and Deep Thought are programmed with a number of predefined games, and clever algorithms to parse the trees into the ends of those games. This is, of course, a dramatic oversimplification. There is always a chance to "beat" the computer along the course of a game. By this I mean making a move that forces the computer to make a move that is less than optimal (whatever that is). If the computer cannot find the best path before the time limit for the move, it might very well make a mistake by choosing one of the less-desirable paths.

There is another class of chess programs that uses real machine learning, or genetic programming / evolutionary algorithms. Some programs have been evolved and use neural networks, et al, to make decisions. In this type of case, I would imagine that the computer might make "mistakes", but still end up in a victory.

There is a fascinating book on this type of GP called Blondie24 that you might read. It is about checkers, but it could apply to chess.

link|flag
That's how you beat today's computers at chess. Tomorrow's will be better. I do agree with you, though, that Blondie24 is fascinating. – Bill the Lizard Nov 18 '08 at 1:45
Voted back up. This post doesn't deserve a negative score. – Cybis Nov 18 '08 at 1:51
Unfortunately, the chess game problem is too large for machine learning to work. They could never get a learning chess program to even play novicely without blunders. Heuristics are better. But Brute Force was even better. The field of Machine learning only learned from its failure with chess. – lkessler Jan 16 at 3:41
Chess programs don't make short term mistakes, and the best programs play better then world champions. I think the latest version of Rybka 64 bit is rated like 3200 ELO – windfinder Feb 6 at 19:49
vote up 1 vote down

Chess is an example of a matrix game, which by definition has an optimal outcome (think Nash equilibrium). If player 1 and 2 each take optimal moves, a certain outcome will ALWAYS be reached (whether it be a win-tie-loss is still unknown).

link|flag
vote up 0 vote down

if you search the entire space of all combinations of player1/2 moves, the single move that the computer decides upon at each step is based on a heuristic.

There are two competing ideas there. One is that you search every possible move, and the other is that you decide based on a heuristic. A heuristic is a system for making a good guess. If you're searching through every possible move, then you're no longer guessing.

link|flag
Actually, the quote is right. Programs look at all possible moves for both sides in the current position, and use heuristics to find a good move to drive the game in the direction of a favorable position for the computer. – Bill the Lizard Nov 18 '08 at 3:21
No, they don't look at all possible moves. They use a null-move heuristic to prune the treee. – windfinder Feb 6 at 19:51
vote up 0 vote down

It just might be solvable, but something bothers me: Even if the entire tree could be traversed, there is still no way to predict the opponent's next move. We must always base our next move on the state of the opponent, and make the "best" move available. Then, based on the next state we do it again. So, our optimal move might be optimal iff the opponent moves in a certain way. For some moves of the opponent our last move might have been sub-optimal.

I just fail to see how there could be a "perfect" move in every step.

For that to be the case, there must for every state [in the current game] be a path in the tree which leads to victory, regardless of the opponent's next move (as in tic-tac-toe), and I have a hard time figuring that.

link|flag
The perfect move is decided by the 'minmax' strategy: It's the move that maximises your minimum possible score (given all possible moves the opponent could make). Or to put it another way, it assumes the opponent also plays perfectly. – Nick Johnson Nov 22 '08 at 15:31
This is an interesting point though. Could a situation arise where a response to the best possible move would put you at a disadvantage if your opponent does not take the best possible move? What implications does this have? – Nona Urbiz Oct 1 at 20:44
vote up 0 vote down

I'm coming to this thread very late, and that you've already realised some of the issues. But as an ex-master and an ex-professional chess programmer, I thought I could add a few useful facts and figures:

  • The total number of chess games is approximately 10^(10^50). That number is unimaginably large. So I don't think chess will ever be solved.
  • The number of chess games of 40 moves or less is around 10^40. That's still an incredibly large number.
  • All endgames of 6 pieces or less have been collated and solved.
link|flag
C'mon. You have to think of the problem differently. Don't think of the number of games, because transpositions and alpha-beta algorithms and such cut that back immensely. Think of board positions (10^60) or combinations of chess pieces (100 million). With Quantum Computing, it's trivial. – lkessler Jan 16 at 3:28
Alpha-beta in this context (solving chess) would require a perfect evaluation function. So does board positions and piece combinations. We don't have a perfect evaluation function, so quantum computing doesn't help us. – RoadWarrior Jan 16 at 10:32
Anytime that I think that something is "trivial", and I'm sure that no one's already done it, I'm also sure I've been wrong at least once. – Dean J Oct 28 at 14:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.