studies conflict and cooperation between rational agents in games, with applications in computer game programming, modeling of economical or coevolutionary processes, and more.

learn more… | top users | synonyms

0
votes
0answers
12 views

Game theory and machine learning/data mining

Is their any notable work(research papers, applications, articles, etc.) regarding both of these fields being used together? If not, what are the most well known applications of game theory in ...
-1
votes
0answers
21 views

Monte Carlo Tree Search : Expansion Step [migrated]

The algorithm asks to "Start at root node, recursively select optimal child nodes until a leaf node L is reached.", and then "If L is a not a terminal node (i.e. it does not end the game) then create ...
0
votes
0answers
32 views

Pareto Dominance over Single objective optimization

Can someone explain me how Pareto dominance works for single objective optimization? (If it is applicable by any means)
0
votes
2answers
186 views

How to implement efficient Alpha-Beta pruning Game Search Tree?

I'm trying to learn about artificial intelligence and how to implement it in a program. The easiest place to start is probably with simple games (in this case Tic-Tac-Toe) and Game Search Trees ...
1
vote
1answer
91 views

Solve multiple-source multiple-destination graph game

I'm trying to categorize the graph problem below or find hints to its solution. There is an (adjacency) matrix that can contain 3 types of elements: units, points and simple terrain. Terrain has no ...
0
votes
0answers
159 views

Sprague-Grundy theorem to solve a game. (ASTRGAME at code chef)

I'm asking this here, because I didn't get an answer at the code chef forums. Thread at codechef. Hi guys. This is the first problem I've worked on. I'm getting a TLE error. Problem - ASTRGAME. ...
0
votes
0answers
163 views

Game theory: Nash equilibrium in asymetric payoff matrix [closed]

I have a utility function describing the desirability of an outcome state. I weigh the expected utility with the probability of the outcome state occurring. I find the expected utility of an action, ...
1
vote
1answer
156 views

MinMax Simple Demonstration for TicTacToe

I have been pulling out my hair trying to figure out how the MinMax algorithm, and hopefully the alpha-beta pruning algorithms work. I'm confused as to the recursion that occurs. Firstly, does each ...
0
votes
1answer
62 views

prove that for every deterministic algorithm ALG, there is some scenario, in which the total distance John’s trucks

There are 3 popular beach resorts, A, B, and C, which reside on a line: A-----(1km)-----B-----(1km)------C. The distances between the resorts is 1k. John owns an ice-cream ...
1
vote
0answers
84 views

sprague-grundy : what if player allowed to take half of the coins? [closed]

In sprague-grundy , i've seen that the anser is the XOR of all the numbers of coins in each pile. But what if a player is only allowed to remove at least one and at most half of the coins from each ...
0
votes
1answer
142 views

How to create an evaluation function for a board game(wizwoz) result

The game is named wizwoz: Two players, red (referred as r) and gold (referred as g) initially select two values n and k. An n × n board is created with k "r" and k "g" randomly placed on the board. ...
4
votes
3answers
290 views

machine learning in Python to play checkers? [closed]

I am a machine learning beginner. I'd like to learn the basics by teaching computers to play checkers. Actually, the games I want to learn are Domineering and Hex. My language of choice is Python ...
0
votes
1answer
209 views

how to build game playing neural network in Python?

I am a neural-network beginner. I'd like to learn the basics of neural networks by teaching computers to play checkers. Actually, the games I want to learn are Domineering and Hex. These games ...
0
votes
0answers
113 views

Dynamic difficulty adjustment / auto game balancing implementation algorithm? [closed]

I am implementing tank game in c++ . and want to adjust the difficulty of the game (i.e. power ,speed , bullets fires per sec. of opponent) according to player's skill (i.e. accuracy won/lose,bullets ...
0
votes
1answer
45 views

Estimate of the number of children in a maze game tree

Suppose we have a maze game with 1 mouse and 4 cats in a 20*20 grid maze. Assume each agent in the maze can move N, E, S, W. What would your best guess be as to the number of children of each node ...
3
votes
2answers
92 views

Integer Payout Function (insert “expected” value, output a distribution maximized for “fun”)

We have several instances in our game where we want to randomize a "payout" given an expected value of output. For instance, instead of rewarding "10 credits" every single time we would want to reward ...
2
votes
3answers
241 views

game theory algorithms: how to proceed

Take an example: Permutation Game(interviewstreet.com). I would like to know how do I proceed in such questions. P.S.: Please don't post the full algorithm(as that would spoil the fun), just a few ...
0
votes
2answers
57 views

Optimal Solution - Programming Theory

I would like someone to explain different approaches to a simple problem and then I am going to try and implement it in PHP for a wider application. I have five people who are choosing who gets what ...
1
vote
1answer
96 views

Evolving strategies for prisoners dilemma

Can somebody help me in understanding this article? I have understood what prisoners dilemma is but not able to understand the stimuli part and how the fitness is calculated.
3
votes
8answers
1k views

Interviewstreet- Permutation Game

Alice and Bob play the following game: 1) They choose a permutation of the first N numbers to begin with. 2) They play alternately and Alice plays first. 3) In a turn, they can remove any one ...
12
votes
6answers
1k views

Optimal Algorithm for Winning Hangman

In the game Hangman, is it the case that a greedy letter-frequency algorithm is equivalent to a best-chance-of-winning algorithm? Is there ever a case where it's worth sacrificing preservation of ...
1
vote
2answers
475 views

Grundy's game extended to more than two heaps

How can In break a heap into two heaps in the Grundy's game? What about breaking a heap into any number of heaps (no two of them being equal)?
3
votes
1answer
200 views

Browsing existing open source projects to learn/improve class design and design patterns

I was thinking of looking into some open source projects to find examples of class design, design patterns, and maybe even some AI / algorithm stuff. I have had some people recommend against looking ...
9
votes
4answers
376 views

Strategies for for games with incomplete information

Are there general strategies for games with incomplete information, especially trick-taking games like Bridge and Doppelkopf? I am interested in ways to implement AI strategies for such games. The ...
1
vote
1answer
365 views

how to make a game tutorial of flash game?

how to make a game tutorial as farmville game tutorial to teach the user to play the game. i have recently involve in make that kind of game tutorial for its user by actionscript 3, can anyone give me ...
2
votes
2answers
518 views

Utilitarian vs. Egalitarian Allocation in Game Theory in AI

Let's say I have two players: Player A and Player B and they have preferences over what resources (let's just be general and use the term 'resource'). Their preferences could be: {p} {q} ...
12
votes
1answer
650 views

Game on the tree, cutting branch

We have a forest of rooted trees. Two players makes alternating moves according 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
347 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 ...
15
votes
2answers
752 views

C# Algorithmic Game Theory API

I recently came accross Gambit - http://www.gambit-project.org/doc/index.html - a C++ algorithmic game theory API. Is anyone aware of a .NET Game Theory Library?
1
vote
2answers
1k 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 ...
4
votes
2answers
1k views

Creating A Board Game AI

I want to code a board game that name is Okey and mostly popular in Turkey. http://en.wikipedia.org/wiki/Okey But i have got some problems about AI. Firslty let me explain the game.. The game is ...
2
votes
4answers
373 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 ...
3
votes
1answer
150 views

Partially re-create Risk-like game based on incomplete log files

I'm trying to re-create this conquerclub (Risk-like) game: http://conquerclub.barrycarter.info/ONEOFF/7460216.html In other words, I want to know who owned each territory at each point in time, ...
1
vote
2answers
234 views

What could cause this to start miscalculating after awhile?

I'm trying to implement NegaMax for a game of checkers. I'm just testing it with a depth of 0 right now, meaning the current player just evaluates all his moves without regard to what the other player ...
4
votes
2answers
1k views

Did I implement this minimax function correctly?

It's for a game of checkers. See revision history for older versions of code. private static Move GetBestMove(Color color, Board board, int depth) { var bestMoves = new ...
2
votes
2answers
302 views

Most effecient way to compute a series of moves in peg solitaire

Given an arbitary peg solitaire board configuration, what is the most effecient way to compute any series of moves that results in the "end game" position. For example, the standard starting position ...
5
votes
4answers
541 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 ...
1
vote
2answers
469 views

Find optimal/good-enough strategy and AI for the game 'Proximity'?

'Proximity' is a strategy game of territorial domination similar to Othello, Go and Risk. Two players, uses a 10x12 hex grid. Game invented by Brian Cable in 2007. Seems to be a worthy game for ...
21
votes
4answers
740 views

Has Anyone Tried to Implement or Participated in a “Productivity Game” at Work?

In The Practical Guide to Defect Prevention, the authors mention that one creative way to boost productivity in software development is to implement "productivity games" where employees compete ...
7
votes
4answers
674 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 ...
12
votes
2answers
589 views

Have you applied Game Theory on a project?

I haven't studied game theory, but it fascinates me. My intuition is that it isn't used by most "enterprise app" developers. However, it is clearly relevant to the large online sites (e.g. ...
6
votes
7answers
1k 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
320 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 ...
4
votes
7answers
3k views

How do I create a good evaluation function for a new board game?

I write programs to play board game variants sometimes. The basic strategy is standard alpha-beta pruning or similar searches, sometimes augmented by the usual approaches to endgames or openings. ...
3
votes
3answers
430 views

Normalizing achievements with multiple sources

I'm looking for a good algorithm recommendation. I have Users and Achievements. Users create Achievements and then give them to other Users. Associated with each Achievement is the point value that ...
72
votes
23answers
21k 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 ...
5
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 ...