do you know board games(tic-tac-toe, game of the generals etc. preferably played 1on1 and has only 3 end results which are win, lose or draw) that still has room for the optimization of the algorithm of its A.I? Thanks, I need this for my thesis.

hmm we already saw chess- but i don't think there will be enough time for us to optimize one games of the general bantumi

Hmm we're also planning to make different AI difficulty levels for a card game called Big Two by using Alpha-beta pruning(?) and using cheating techniques for the AI like giving them knowledge about their opponent's hand or the top card of the deck. dunno if it's a significant study though.

As much as possible, i want to improve an AI algorithm that's what i'm interested with.

link|improve this question

0% accept rate
1  
So what exactly is your question? – Jivings Dec 7 '11 at 14:54
He wants a thesis problem. – PengOne Dec 7 '11 at 15:30
What kind of thesis is this? Appropriate problems for a Ph.D. thesis will be a lot harder than, e.g., a senior thesis. – Michael J. Barber Dec 7 '11 at 15:57
hmm thesis for undergraduate degree – Odine Dec 8 '11 at 12:07
feedback

closed as not constructive by larsmans, PengOne, Filburt, Bill the Lizard Dec 7 '11 at 16:03

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

The game of "Go" has a lot of room for improvement. The best humans are still much better than the best computer programs.

link|improve this answer
Go is extremely tough to improve, but I would like to see someone improve on the current algorithms, which are Monte Carlo based. – birryree Dec 7 '11 at 15:04
Mathematical Go is fairly well optimized at this point. – PengOne Dec 7 '11 at 15:31
@PengOne, I'm not sure how to interpret your statement. Clearly there is a lot of room for improvement in the skill of Go computer programs. I think Mathematical Go is mostly concerned with the late endgame, right? Also, what is the meaning of "fairly well optimized"? – Fantius Dec 7 '11 at 16:09
@PengOne - mathematical go is end game, even the best go algorithms are only capable of playing at mid-amateur strength, while professionals can easily crush them. The whole game in the opening and midgame need drastic algorithm improvements. – birryree Dec 8 '11 at 7:36
What are the concepts I need to learn I aside from combinatorial theory? – Odine Dec 8 '11 at 12:11
show 3 more comments
feedback

I believe you're interesting in Combinatorial Game Theory, so looking for some introductory texts on the subject is a good place to start (I recommend the Berlekamp, Conway, Guy series "Winning ways for your mathematical plays").

Backgammon, Chess and Go are extremely complex games where there is not yet a provably optimal strategy. Hex has been solved, as has checkers apparently.

One variant you can do to classical combinatorial games (games of no chance) is to consider the misere version. It's often harder so there are more open problems there. On the other hand, it's harder.

link|improve this answer
Very interesting link. IIUC, "solved" is a technical term here meaning at minimum that the result given perfect play can be predicted. That might still allow room for interesting research. Any idea what the implications are for Hex and checkers? – Michael J. Barber Dec 7 '11 at 16:04
feedback

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