{% extends "global/Page.html" %} {% load otree static %} {% block title %} Part 3 - Round {{ subsession.round_number }} {% endblock %} {% block content %} {% if subsession.round_number == 1 %}

You have finished Part 2, and now proceed to Part 3. Please read the updated instructions.{% endif %}

{% if player.round_number == 1 %}

Every round of Part 3, your group of {{ Constants.players_per_group }} players collectively chooses between 2 lotteries : A and B.
The collective decision is determined by simple majority vote. The experiment software plays the chosen lottery, and shows the result on the next screen.
For instance, if your group opts for lottery B in this round, and the virtual die rolls “1”, your outcome from this round will be 40 Experimental Dollars (ED).
The table below shows how both lotteries' outcomes depend on the die roll.
At the end of Part 3, one of the 9 rounds is randomly chosen - by another virtual die - which will realize into the payoff of each group member.
Thus, every collective decision in Part 3 has 1-to-9 chance (11.1%) to affect the experiment payoff of EACH PLAYER IN YOUR GROUP.
To cast your vote, click on the drop-down menu.
Let me remind you, 10 Experimental Dollars = 1 USD.

{% else %}

Every round of Part 3, your group of {{ Constants.players_per_group }} players collectively chooses between 2 lotteries : A and B.
The collective decision is determined by simple majority vote. The experiment software plays the chosen lottery, and shows the result on the next screen.
For instance, if your group opts for lottery B in this round, and the virtual die rolls “1”, your outcome from this round will be 40 Experimental Dollars (ED).
The table below shows how both lotteries' outcomes depend on the die roll.
At the end of Part 3, one of the 9 rounds is randomly chosen - by another virtual die - which will realize into the payoff of each group member.
Thus, every collective decision in Part 3 has 1-to-9 chance (11.1%) to affect the experiment payoff of EACH PLAYER IN YOUR GROUP.
To cast your vote, click on the drop-down menu.
Let me remind you, 10 Experimental Dollars = 1 USD.

{% endif %} {% formfields %}
Lottery Payoff Table (Experimental Dollars)

{% if player.round_number <= Constants.t3 %} {% elif player.round_number > Constants.t3 %} {% else %} {% endif %}
Dice Roll: 1 2 3 4 5 6 7 8 9 10
Lottery A {{ Constants.Alo }} {% if player.round_number > 8%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 7%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 6%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 5%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 4%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 3%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 2%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 1%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {{ Constants.Ahi }}
Lottery B 40 {% if player.round_number > 8%}50{% else %}40{% endif %} {% if player.round_number > 7%}50{% else %}40{% endif %} {% if player.round_number > 6%}50{% else %}40{% endif %} {% if player.round_number > 5%}50{% else %}40{% endif %} {% if player.round_number > 4%}50{% else %}40{% endif %} {% if player.round_number > 3%}50{% else %}40{% endif %} {% if player.round_number > 2%}50{% else %}40{% endif %} {% if player.round_number > 1%}50{% else %}40{% endif %} 50
Lottery A {{ Constants.Alo }} {% if player.round_number > 17%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 16%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 15%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 14%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 13%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 12%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 11%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {% if player.round_number > 10%}{{ Constants.Ahi }}{% else %}{{ Constants.Alo }}{% endif %} {{ Constants.Ahi }}
Lottery B 40 {% if player.round_number > 17%}50{% else %}40{% endif %} {% if player.round_number > 16%}50{% else %}40{% endif %} {% if player.round_number > 15%}50{% else %}40{% endif %} {% if player.round_number > 14%}50{% else %}40{% endif %} {% if player.round_number > 13%}50{% else %}40{% endif %} {% if player.round_number > 12%}50{% else %}40{% endif %} {% if player.round_number > 11%}50{% else %}40{% endif %} {% if player.round_number > 10%}50{% else %}40{% endif %} 50


{% endblock %}