Tagged Questions

49
votes
22answers
12k views

Is there a perfect algorithm for chess?

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 ...
11
votes
1answer
566 views

Game on the tree, cutting branch

We have a forest of rooted trees. Two players makes alternating moves accroding to the following rule: one move is to cut vertex and all its children. Player which makes last move (no vertices remain) ...
7
votes
3answers
264 views

Resource placement (optimal strategy)

I know that this is not exactly the right place to ask this question, but maybe a wise guy comes across and has the solution. I'm trying to write a computer game and I need an algorithm to solve this ...
6
votes
4answers
562 views

How to win this game?

Support we have an n * m table, and two players play this game. They rule out cells in turn. A player can choose a cell (i, j) and rule out all the cells from (i,j) to (n, m), and who rules out the ...
6
votes
13answers
2k views

Prisoner's Dilemma Algorithm

After watching The Dark Knight I became rather enthralled with the concept of the Prisoner's Dilemma. There must be an algorithm that that maximizes one's own gain given a situation. For those that ...
5
votes
4answers
380 views

Resources about different Computer Science fields

I am going to begin my final year at university this September so I need to do a project for my dissertation. I had a look at the list with the projects suggested by the uni last year and I don't find ...
5
votes
7answers
902 views

Trying to build algorithm for optimal tower placement in a game

This is going to be a long post and just for fun, so if you don't have much time better go help folks with more important questions instead :) There is a game called "Tower Bloxx" recently released ...
4
votes
3answers
276 views

Whats the name of this game?

This is not a programming question per se, although the ultimate goal is to devise an algorithm. I'm looking for references or at least the name of a type of game. It is pretty widespread on ...
2
votes
4answers
279 views

Formula/Algorithm for Weighting Game Outcomes

I have an interesting conceptual problem, and I'm wondering if anyone can help me quantify it. Basically, I'm playing a set of games... and for each game I know the probability that I will win, the ...
1
vote
1answer
281 views

Nash equilibrium in Python

Is there a Python library out there that solves for the Nash equilibrium of two-person zero-games? I know the solution can be written down in terms of linear constraints and, in theory, scipy should ...