{% extends "otree/WaitPage.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)

These payoffs are summarized in the following tables:

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 }}

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 }}

Please wait for the other participants to finish reading these instructions.

{% endblock %} {% block app_styles %} {% endblock %}