{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Part 1: The guessing tasks
Please read these instructions carefully. We will test your understanding of them later.
In this study, you will be asked to complete {{num_questions}} guessing tasks.
In each guessing task,
{% if player.default_condition == 'two' %}
there are two bags, "bag A" and "bag B".
{% else %}
there are ten bags, "bag A", "bag B", "bag C", "bag D", "bag E", "bag F", "bag G", "bag H", "bag I" and "bag J".
{% endif %}
Each bag contains 100 balls, some of which are red and some of which are blue.
{# The "more Red" bag always contains more red balls than the "more Blue" bag, and vice versa.#}
One of the bags is selected at random by the computer as described below. You will not observe which bag was selected.
Instead, the computer will then randomly draw one or several balls from the secretly selected bag, and will show these balls to you.
Your task is to guess which bag was selected based on the available information. The exact procedure is described below:
You then make your guess by stating a probability between 0% and 100% that bag A was drawn. The corresponding probability that {% if player.default_condition == 'two' %} bag B {% else %} one of bag B, C, D, E, F, G, H, I or J {% endif %} was drawn is 100 minus your stated probability that bag A was drawn.