{% extends "global/Page.html" %} {% load otree %} {% block title %} Question {{round_confidence }} of {{num_questions}}
{% endblock %} {% block content %}

Your endowment for this lottery is {{ endowment }}.

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

We randomly draw an integer number between 0 and 100, with each number being equally likely to be drawn. Call this number X.

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

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

How certain are you about how much this lottery is worth to you?


Use the slider!

0 = very uncertain
completely certain = 100



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