{% load otree %}
This study consists of 3 sessions.
In each session, you will play {{ rounds_per_session }} rounds of prisoner's dilemma games with a
pre-programmed computer player (the 'bot'). Your goal is to maximize your total payoff in each session.
The bot implements a different strategy in each session
(within each session, it implements the same strategy in all rounds of that session).
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 }} |