{% extends "global/Page.html" %} {% load otree %} {% block title %} Decision screen 2
{% endblock %} {% block content %}

You will receive a bonus of {{ fixed_payment_per_question }} for a careful consideration of the question below.

{% if type == 'list' %} {% elif type == 'rocl' %} {% elif type == 'ellsberg' %} {% endif %}
{% for prob, sum, abssum in player.current_lottery %} With probability {{ prob }}% : {% if sum > 0 %}   Get  {% elif sum < 0 %}   Lose  {% elif sum == 0 and player.lottery_amount > 0 %}   Get  {% elif sum == 0 and player.lottery_amount < 0 %}   Lose  {% endif %} $ {{ abssum }}
{% endfor %}

We randomly draw an integer number between {{ roclrangestart }} and {{ roclrangeend }}, with each number being equally likely to be drawn. Call this number X.

{% for prob, sum, abssum in player.current_lottery %} With probability {{ prob }}% : {% if sum > 0 %}   Get  {% elif sum < 0 %}   Lose  {% elif sum == 0 and player.lottery_amount > 0 %}   Get  {% elif sum == 0 and player.lottery_amount < 0 %}   Lose  {% endif %} $ {{ abssum }}

{% endfor %}

Imagine that the computer simulates an urn that contains 90 balls. Out of these 90 balls:

  • 30 balls are red
  • 60 balls are yellow or blue, but you don't know how many are yellow and how many are blue

The computer will randomly select one of these 90 balls, with equal probability.

{% for sum, o1, o2 in player.current_lottery %} Get $10 if the drawn ball is {{ o1 }}
Get $0 if the drawn ball is {{ o2 }} {% endfor %}

On the previous decision screen you indicated that this lottery is worth {% if player.indicator_never_always_switcher == 1 %} between {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %}${{ absval_low }} and {% if val_up < 0 or val_up == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %} ${{ absval_up }} to you. {% elif player.indicator_never_always_switcher == 0 %} {% if val_up < 0 or val_up == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %} ${{ absval_up }} to you. {% elif player.indicator_never_always_switcher == 2 %} {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %}${{ absval_low }} to you. {% endif %}


How certain are you that to you this lottery is worth exactly the same as {% if player.indicator_never_always_switcher == 1 %} {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %} between ${{ absval_low }} and {% if val_up < 0 or val_up == 0 and player.lottery_amount < 0 %} {% else %} {% endif %} ${{ absval_up }} {% elif player.indicator_never_always_switcher == 0 %} {% if val_up < 0 or val_up == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %} ${{ absval_up }} {% elif player.indicator_never_always_switcher == 2 %} {% if val_low < 0 or val_low == 0 and player.lottery_amount < 0 %} losing {% else %} getting {% endif %}${{ absval_low }} {% endif %} for sure?

very uncertain
completely certain

I am certain that the lottery is worth Use the slider! to me. {#
#}

{{form.errors}} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}