{% extends "global/Page.html" %} {% load otree static %} {% block title %} Payoffs {% endblock %} {% block content %}
In each round, each participant in your group has to decide which one of two possible actions to choose, X or Y. The action choices that you and others in your group make determine what you get in each round, according to the following rules:
Payoff table for Red types:
| Others choose | 3X, 0Y | 2X, 1Y | 1X, 2Y | 0X, 3Y |
|---|---|---|---|---|
| You choose X | {{ triple_high }} | {{ double_high }} | {{ high_payoff }} | {{ nothing }} |
| You choose Y | {{ nothing }} | {{ low_payoff }} | {{ double_low }} | {{ triple_low }} |
Payoff table for Blue types:
| Others choose | 3X, 0Y | 2X, 1Y | 1X, 2Y | 0X, 3Y |
|---|---|---|---|---|
| You choose X | {{ triple_low }} | {{ double_low }} | {{ low_payoff }} | {{ nothing }} |
| You choose Y | {{ nothing }} | {{ high_payoff }} | {{ double_high }} | {{ triple_high }} |
Click the "Next" button when you have finished reading these instructions and are ready to continue.
{% next_button %} {% endblock %} {% block app_styles %} {% endblock %}