next up previous
Next: The Two-Player Prisoner's Dilemma Up: No Title Previous: The Prisoner's Dilemma

Axelrod's Tournament

In the late 1970's, political scientist Robert Axelrod held a computer tournament designed to investigate the prisoner's dilemma situation.2 Contestants in the tournament submitted computer programs that would compete in an iterated prisoner's dilemma game of approximately two hundred rounds, using the same matrix shown in Figure 2. Each contestant's program played five iterated games against each of the other programs submitted, and after all games had been played the scores were tallied.

The contestants in Axelrod's tournament included professors of political science, mathematics, psychology, computer science, and economics. The winning program--the program with the highest average score--was submitted by Anatol Rapoport, a professor of psychology at the University of Toronto. In this problem set, we will pursue Axelrod's investigations and make up our own Scheme programs to play the iterated prisoner's dilemma game. The second (optional) part of this problem set is itself an experiment in the spirit of Axelrod's tournament: a contest of programs that play a three-person prisoner's dilemma game.

Before we look at the two-player program, it is worth speculating on what possible strategies might be employed in the iterated prisoner's dilemma game. Here are some examples:

All-Defect
A program using the all-defect strategy simply defects on every round of every game.

Poor-Trusting-Fool
A program using the poor-trusting-fool strategy cooperates on every round of every game.

Random
This program cooperates or defects on a random basis.

Go-by-Majority
This program cooperates on the first round. On all subsequent rounds, go-by-majority examines the history of the other player's actions, counting the total number of defections and cooperations by the other player. If the other player's defections outnumber her cooperations, go-by-majority will defect; otherwise this strategy will cooperate.

Tit-for-Tat
This program cooperates on the first round, and then on every subsequent round it mimics the other player's previous move. Thus, if the other player cooperates (defects) on the nth round, then tit-for-tat will cooperate (defect) on the (n + 1)th round.

All of these strategies are extremely simple. (Indeed, the first three do not even pay any attention to the other player; their responses are uninfluenced by the previous rounds of the game.) Nevertheless, simplicity is not necessarily a disadvantage. Rapoport's first-prize program employed the tit-for-tat strategy, and achieved the highest average score in a field of far more complicated programs.


next up previous
Next: The Two-Player Prisoner's Dilemma Up: No Title Previous: The Prisoner's Dilemma
Michael J. O'Donnell
1998-11-22