{% block title %}

Round {{ player.round_number }}

{% endblock %} {% block content %} {% if player.initial == 1 and player.round_number != 1%}

Guess the Proportion of Blue Balls
Timeline


1. The computer filled a new urn with B blue balls and 100-B red balls.
B was chosen randomly between 0 and 100.

{% elif player.round_number <= 3 and player.round_number > 1 %}

Guess the Proportion of Blue Balls
Timeline


1. The computer filled a new urn with B blue balls and 100-B red balls.
B was chosen randomly between 0 and 100.

2. The computer showed 10 random balls from the urn to the other Participant.
The other Participant guessed the proportion of blue balls (B%) in the urn.

3. The 10 balls were returned to the urn.

{% elif player.round_number >= 4 %}

Guess the Proportion of Blue Balls
Timeline


1. The computer filled a new urn with B blue balls and 100-B red balls.
B was chosen randomly between 0 and 100.

2. The computer showed 10 random balls from the urn to the other Participant.
The other Participant guessed the total number of blue balls (B) in the urn.

3. The 10 balls were returned to the urn.

{% endif %}

{{ next_button }}

{% endblock %}