{% extends "global/Page.html" %} {% load otree static %} {% block title %} Risky Decisions -{% if player.round_number < 10 %} Part 1 - Round {{ subsession.round_number }} {% else %} Part 2 - Round {{ player.round }} {% endif %} {% endblock %} {% block content %} {% if subsession.round_number == 10 %}
You have finished Part 1, and now start Part 2.
{% endif %} {% if player.round_number == 1 %} Every round, you are facing a choice between 2 lotteries : A and B.
To make the choice, click on the drop-down menu and select your preferred lottery.
Then, the experiment software plays your chosen lottery, using a virtual 10-sided die (see Die Roll in table below), and shows the result on the next screen.
For instance, if you choose lottery A in this round, and the virtual die rolls “1”, your outcome from this round will be 20 Experimental Dollars (ED). The table below shows how lottery outcomes depend on the die roll.
After each 9 rounds have been played, another virtual die randomly chooses one of the 9 rounds to realize into your experiment payoff.
Thus, every round of this Part has 1-to-9 chance (11.1%) to affect your experiment payoff.
10 Experimental Dollars = 1 USD.
Every round, you are facing a choice between 2 lotteries : A and B.
To make the choice, click on the drop-down menu and select your preferred lottery.
Then, the experiment software plays your chosen lottery, using a virtual 10-sided die (see Die Roll in table below), and shows the result on the next screen.
For instance, if you choose lottery A in this round, and the virtual die rolls “1”, your outcome from this round will be 20 Experimental Dollars (ED). The table below shows how lottery outcomes depend on the die roll.
After each 9 rounds have been played, another virtual die randomly chooses one of the 9 rounds to realize into your experiment payoff.
Thus, every round of this Part has 1-to-9 chance (11.1%) to affect your experiment payoff.
10 Experimental Dollars = 1 USD.
It is up to you whether consider this information or not:
Votes A | Votes B |
---|---|
{{ a }}% | {{ b }}% |
Die 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 |