{% load otree %}
In this study, you will play {{ num_rounds }} rounds of prisoner's dilemma games with a
randomly generated computer player (the 'bot').
The bot implements one particular strategy in all rounds,
which is randomly chosen at the start of the experiment.
The bot's strategy is unknown to you (you are of course welcome to attempt to guess the bot's
strategy in order to adjust your own strategy accordingly).
In each round, both you and the bot privately choose whether you want to cooperate or defect.
Your payoffs will be determined by the choices of both you and the bot as below:
In each cell, the amount to the left is the payoff for you and to the right for the bot.
The Bot | |||
---|---|---|---|
Cooperate | Defect | ||
You | Cooperate | {{ Constants.both_cooperate_payoff }}, {{ Constants.both_cooperate_payoff }} | 0, {{ Constants.betray_payoff }} |
Defect | {{ Constants.betray_payoff }}, 0 | {{ Constants.both_defect_payoff }}, {{ Constants.both_defect_payoff }} |