{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Part 2 - Answers to check questions. First payment opportunity {% endblock %} {% block content %}
Time: {{ time }} seconds.
These are the answers to the questions in the previous page:
If your number is
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} 30, {% else %} 70, {% endif %}
and the other two team members have
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} 50 and 30, {% else %} 50 and 70, {% endif %}
what is your payment?
◦ Your answer {{ player.quiz_1 }} was
{% if player.quiz_1 == "$2.00" %}correct.
{% else %}incorrect.{% endif %}
◦ The average of
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} 30, 50 and 30 is 37, {% else %} 70, 50 and 70 is 63, {% endif %}
which is {% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} smaller than 46, {% else %} larger than 54, {% endif %}
hence
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} you will get a payment of $2.00,
{% elif group.r_aux_g5 == 1 and player.id_in_group > 1 %} you and one other team member will each get a payment of $2.00,
{% else %} you will get a payment of $2.00, the other two team members will also get $2.00. {% endif %}
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} the other two team members will get nothing ($0.00).
{% elif group.r_aux_g5 == 1 and player.id_in_group > 1 %} the remaining third team member will get nothing ($0.00). {% endif %}
If your number is 50 and the other two team members have
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} 80 and 70, {% else %} 20 and 30, {% endif %}
what is your payment?
◦ Your answer {{ player.quiz_3 }} was
{% if player.quiz_3 == "$0.00" %}correct.
{% else %}incorrect.{% endif %}
◦ The average of
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} 50, 80 and 70 is 67, {% else %} 50, 20 and 30 is 33, {% endif %}
which is {% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} larger than 46, {% else %} smaller than 54, {% endif %}
hence
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} you will not get a payment ($0.00),
{% elif group.r_aux_g5 == 1 and player.id_in_group > 1 %} you and one other team member will not get a payment ($0.00),
{% else %} your will not get a payment ($0.00). The other two team members will also get nothing ($0.00). {% endif %}
{% if group.r_aux_g5 == 1 and player.id_in_group == 1 %} the other two team members will get a payment of $2.00 each.
{% elif group.r_aux_g5 == 1 and player.id_in_group > 1 %} the remaining third team member will get a payment of $2.00. {% endif %}
Please click “Next” to see your random number and continue.
{% next_button %} {% endblock %}