{% extends "global/Page.html" %} {% load otree %} {% block title %} Decision {{round }} of {{num_questions}}
{% endblock %} {% block content %}
{% if type == 'list' %} {% elif type == 'rocl' %} {% endif %}
{% for prob, sum in player.current_lottery %} {% if forloop.counter != 1 %}
and
{% endif %} {% if forloop.counter == 1 and sum >= 0 %} Get  {% elif forloop.counter == 1 and sum < 0 %} Lose  {% elif sum >= 0 %} get  {% elif sum < 0 %} lose  {% endif %} $ {{ sum | abs }} with probability {{ prob }}% {% endfor %}

We roll a fair four-sided dice with numbers 20, 40, 60, 80

{% for roll, prob1, sum1, prob2, sum2 in player.current_lottery %} If dice comes up {{ roll }}:
  • get  $ {{ sum1 | abs }} with probability {{ prob1 }}%
  • get  $ {{ sum2 | abs }} with probability {{ prob2 }}%
{% endfor %}

How difficult or complex do you find it to assess how much this particular lottery is worth to you?

0 = not difficult at all 1 2 3 4 5 6 7 8 9 10 = extremely difficult


What is the highest amount out of your endowment of $2 that you are willing to give up to remove the manipulation by the evil machine (up to +/- $2 of your own valuation) for this particular lottery?

Use the slider:

$0

$0.50

$1.00

$1.50

$2.00    


{% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}