{% extends "global/Page.html" %} {% load otree %} {% block title %}

Game 1 Instructions

{% endblock %} {% block content %}

Game 1 consists of 5 rounds. In each round, you and the other 2 group members will receive an initial endowment of 100 ECUs and then decide how much of the initial endowment to keep and how much to allocate towards a group account.

For each ECU allocated to the group account, every group member will earn {{subsession.mpcr}} ECUs. That is, every ECU you allocate to the group account will generate {{subsession.mpcr}} ECUs for you and {{subsession.mpcr}} ECUs for everyone else in your group, therefore this leads to a total of {{subsession.mpcr}}*{{ Constants.players_per_group }} = {{ subsession.units }} ECUs for the group per ECU allocated. Similarly, if someone else allocates 1 ECU to the group account, you and everyone else in your group will earn {{subsession.mpcr}} ECUs per person.

Therefore, your round payoffs are calculated as follows:

Your Round Payoffs = ECUs you keep for yourself + {{subsession.mpcr}}*(total amount allocated of all members in your group).

For example, if you allocate 50 ECUs to the group account and keep 50 ECUs for yourself. If the total amount allocated to the group account is 150 ECUs. Then, your round payoff will be the ECUs you kept for yourself + 0.5 times the total amount allocated to the group account making 125 ECUs (i.e. 50 ECUs + 75 ECUs).

Now please click ‘Next’, and you will be redirected to a page with questions to check your comprehension of the instructions.

{% next_button %} {% endblock %}