{% extends "global/Page.html" %} {% load otree %} {% block title %} TASK 7 {% endblock %} {% block content %}
Recall that you got {{ orig_correct }} out of {{ Constants.num_rounds }} questions graded as correct initially. Also, recall that the computer randomly assigned a correct or incorrect to THREE of your answers.
As a result, your actual number of correct answers could be: {% if possible0 >= 0 and possible0 <= 20 %}{{possible0}}, {% endif %} {% if possible1 >= 0 and possible1 <= 20 %}{{possible1}}, {% endif %} {% if possible2 >= 0 and possible2 <= 20 %}{{possible2}}, {% endif %} {% if possible3 >= 0 and possible3 <= 20 %}{{possible3}}, {% endif %} {% if possible4 >= 0 and possible4 <= 20 %}{{possible4}}, {% endif %} {% if possible5 >= 0 and possible5 <= 20 %}{{possible5}}, {% endif %} {% if possible6 >= 0 and possible6 <= 20 %}or {{possible6}}. {% endif %}
In the previous question, the number of questions you think you answered correctly was {{ post_number_correct }}. The next question is designed to assess how confident you feel about your guess.
Payoff: As before, you will be able to earn as much as $5 for the accuracy of your guess. The more accurate your guess is, the higher your payoff. This formula was designed by economists. According to the formula, it is in your best interest to respond honestly.
Recall at the end of the session, ONE of Tasks 3, 4, 6, or 7 will be picked by the computer at random to determine your payoff from these tasks.
What do you think is the percent chance (or chances out of 100) that the number of questions you answered correctly falls in each of the following bins. Please assign a number between 0 and 100 for each row. Your answers must sum up to 100.| Number of questions answered correctly | Probabilities (between 0 and 100%) |
|---|---|
| {{ possible0 }} question(s) | {% formfield player.post_prob_guess0 label="" %} |
| {{ possible1 }} question(s) | {% formfield player.post_prob_guess1 label="" %} |
| {{ possible2 }} question(s) | {% formfield player.post_prob_guess2 label="" %} |
| {{ possible3 }} question(s) | {% formfield player.post_prob_guess3 label="" %} |
| {{ possible4 }} question(s) | {% formfield player.post_prob_guess4 label="" %} |
| {{ possible5 }} question(s) | {% formfield player.post_prob_guess5 label="" %} |
| {{ possible6 }} question(s) | {% formfield player.post_prob_guess6 label="" %} |