mahesh cs
mahesh cs

Reputation: 335

Move prediction in a chess game?

Is it possible to find the pattern of a chess player and predict the most appropriate next move?

Is there any algorithm can solve this problem? Can you suggest any reference to find out the algorithm.

Upvotes: 3

Views: 1886

Answers (3)

Juser1167589
Juser1167589

Reputation: 405

To a degree. An easy means of prediction in AI is the use of Case-based reasoning agents.

Assuming your chess pattern detector has been trained on a fairly large number of games, it will indeed be able to guess an opponent's moves based on current board state and previous moves. The correctness of its suppositions are of course dependent on how many games it has been trained on, as well as the content of games it has been trained on.

Upvotes: 3

Stephenloky
Stephenloky

Reputation: 413

Programmer Puzzle: Encoding a chess board state throughout a game
Chess game in JavaScript
Is there a perfect algorithm for chess?

This could help, technically there's no computer with power enough to solve a chess problem perfectly.

search more on stackoverflow for more views !

Upvotes: 3

Related Questions