{% 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:

  1. Payoff for RED choosing X: {{ high_payoff }} × (number of others who chose X)
  2. Payoff for RED choosing Y: {{ low_payoff }} × (number of others who chose Y)
  3. Payoff for BLUE choosing X: {{ low_payoff }} ×(number of others who chose X)
  4. Payoff for BLUE choosing Y: {{ high_payoff }} × (number of others who chose Y)

Payoff table for Red types:

Others choose 3X, 0Y2X, 1Y1X, 2Y0X, 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, 0Y2X, 1Y1X, 2Y0X, 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 %}