{% extends "global/SurveyPage.html" %} {% load otree static %} {% load i18n %} {% block title %} Instructions Learning Phase {% endblock %} {% block content %}

You will see two options, both options offer points with some probability. You see the amount of points (e.g., 5 points and 7 points), but you will not see the probabilities. Each amount of points occurs with some constant probability (e.g., 5 points 80% of the time, 7 points 20%). Your task in the learning phase is to learn about the hidden probabilities.

To learn about the probabilities you can click on the options. Clicking causes the option to play out a point draw according to the option's hidden probabilities and to show you the drawn amount of points. E.g., 5 points will appear in 80 of 100 clicks if the hidden probability is 80%. You can click both options until you have learned the probabilities.

You can move on at any time. Once you feel you have learned the probabilities of both options you can continue to the choice phase by clicking on the “I am ready to move on” button.

The maximum number of clicks available to you equals in total {{ num_samples }}, counting clicks on both options together.

After you have moved on, the choice phase starts, and then a new block starts. New blocks reset the click counter and give you another {{ num_samples }} clicks to learn about the hidden probabilities

{% blocktrans trimmed %}Example of options{% endblocktrans %}

{% if sample_condition == 1 %}

{% blocktrans trimmed %} This option offers +7 points with a hidden constant probability or +5 points with 1 minus the first probability. {% endblocktrans %}

{% blocktrans trimmed %} This option offers +3 points with a hidden constant probability or +9 points with 1 minus the first probability. {% endblocktrans %}

{% else %}

{% blocktrans trimmed %} This option offers +7 points with a probability of 20 % or +5 points with a probability of 80 %. {% endblocktrans %}

{% blocktrans trimmed %} This option offers +3 points with a probability of 60 % or +9 points with a probability of 40 %. {% endblocktrans %}

{% endif %}

Comprehension Check

{% formfields %} {% blocktrans trimmed %}

On the next page you will see an example of a learning phase. Click on "Next" to navigate to the next page.

{% endblocktrans %} {% next_button %} {% endblock %}