{% extends "global/Page.html" %} {% load otree static %} {% load mathfilters %} {% block title %} What is your assessment under this scenario? {% endblock %} {% block content %}

Scenario {{player.round_number}} of {{num_rounds}}


Suppose you see the following information about the set of balls drawn out of the selected box:

{% if report_t == 2 %}

{{ signal_N }} {% if signal_N == 1 %} ball is {% else %} balls are {% endif %} drawn out of the selected box, of which:

{{signal_ratio2}}% {% if signal_N == 1 %}is {% else %} are {% endif %}
and {{signal_ratio1}}% {% if signal_N == 1 %}is {% else %} are {% endif %}
{% elif report_t == 3 %}

{{ signal_N }} {% if signal_N == 1 %} ball is {% else %} balls are {% endif %} drawn out of the selected box, among which:

{% if signal_diff > 0 %} {% if signal_diff == 1 %} there is {{signal_diff}} more
than

{% else %} there are {{signal_diff}} more
than

{% endif %} {% else %} {%if signal_diff == -1 %} there is {{signal_diff_abs}} more
than

{% else %} there are {{signal_diff_abs}} more
than

{% endif %} {% endif %} {% elif report_t == 4 %}

{{ if signal_N == 1 }} {{signal_count2}} ball is {{ elif signal_count2 == 1 }} {{signal_count2}} ball is {{ else }} {{signal_count2}} balls are {{ endif }}
and {{ if signal_N == 1 }} {{signal_count1}} ball is {{ elif signal_count1 == 1 }} {{signal_count1}} ball is {{ else }} {{signal_count1}} balls are {{ endif }}
{% elif report_t == 5 %}

{{ for row in rows }} {{ if row.cells == 1 }} {{ elif row.cells == 2 }} {{ endif }} {{ if row.divisible_by_4 }}{{ endif }} {{ endfor }}
{% endif %}
Test Results
Histogram of numbers of
in {{ signal_N }} {{ if signal_N == 1}}draw {{ else }} draws {{ endif }} from Box L VS from Box R:

Given the info, what is the percentage chance that the selected box is Box L vs Box R?

Click on the slider bar then drag to assess.

Box L

Box R

{% endblock %}