{% extends "global/Page.html" %} {% load otree %} {% block title %} TASK 5 {% endblock %} {% block content %}

You will now be informed of the number of questions you answered correctly.

You got {{ orig_correct }} out of {{ Constants.num_rounds }} questions graded as correct.

Note that the computer randomly assigned a correct or incorrect to THREE of your answers.

For each of the three randomly selected questions, if your answer is correct, there is a 1/3 chance that it is graded as correct and 2/3 chance that it is graded as incorrect. In contrast, if your answer is incorrect, there is a 2/3 chance that it is graded as incorrect and 1/3 chance that it is graded as correct. In other words, for these three questions, a correct answer has twice as much chance of being graded as incorrect (false outcome) than as correct (true outcome); an incorrect answer has twice as much chance of being graded as incorrect (true outcome) than as correct (false outcome).

To make sure you understand how the randomization works, please answer the two practice questions below.

Practice Question 1: Suppose a question was selected for a random grade assignment and your answer was actually correct, what is the chance that it was graded as incorrect? {% formfield player.practice1 label="" %}

Practice Question 2: Suppose a question was selected for a random grade assignment and your answer was actually incorrect, what is the chance that it was graded as correct? {% formfield player.practice2 label="" %}

As a result, there is some chance that the final score shown above is indeed your accurate score, but there is also some chance that the shown score is lower than your actual score, and some chance that the shown score is higher than your actual score. In fact, 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 %}

The following table shows how your answer for each of the questions was graded and the chance you thought your answer was correct in Task 2.

{% for p in player_in_all_rounds %} {% endfor %}
Question Your answer was graded as... The chance (0-100%) you thought your answer was correct
{{ p.question }} {% if p.orig_grading is True %} Correct {% else %} Incorrect {% endif %} {{ p.probability }}

Recall that your payoff and bonus payment depend on the number of questions graded as correct.

You got {{ orig_correct }} questions graded as correct, your payoff is hence ${{ orig_payoff3 }} and the bonus is ${{ orig_bonus3 }}.
Your current total compensation is ${{ orig_comp3 }}.

You may request a regrade. In the case of a regrade, the THREE questions that were randomly assigned a score would be regraded accurately. If you request a regrade, the payoff, bonus, and total compensation associated with your potential regraded outcomes are as follows:

{% if possible0 >= 0 and possible0 <= 20 %} {% endif %} {% if possible1 >= 0 and possible1 <= 20 %} {% endif %} {% if possible2 >= 0 and possible2 <= 20 %} {% endif %} {% if possible3 >= 0 and possible3 <= 20 %} {% endif %} {% if possible4 >= 0 and possible4 <= 20 %} {% endif %} {% if possible5 >= 0 and possible5 <= 20 %} {% endif %} {% if possible6 >= 0 and possible6 <= 20 %} {% endif %}
Number of correct answers Payoff Bonus Total Compensation
{{ possible0 }} {{ orig_payoff0 }} {{ orig_bonus0}} {{ orig_comp0}}
{{ possible1 }} {{ orig_payoff1 }} {{ orig_bonus1}} {{ orig_comp1}}
{{ possible2 }} {{ orig_payoff2 }} {{ orig_bonus2}} {{ orig_comp2}}
{{ possible3 }} {{ orig_payoff3 }} {{ orig_bonus3}} {{ orig_comp3}}
{{ possible4 }} {{ orig_payoff4 }} {{ orig_bonus4}} {{ orig_comp4}}
{{ possible5 }} {{ orig_payoff5 }} {{ orig_bonus5}} {{ orig_comp5}}
{{ possible6 }} {{ orig_payoff6 }} {{ orig_bonus6}} {{ orig_comp6}}

However, in order to make a regrade request, you must pay a cost. There are 10 possible values for the cost of asking for a regrade, ranging from having to pay $3.5 to getting paid $1.

For EACH of the following costs of regrade, you will have to choose whether you would like to request a regrade or not.

If you choose "Request Regrade", you will pay the associated cost (which will be deducted from your compensation) and the three randomly chosen questions will be regraded accurately. Remember, there is a chance that the original grade is correct and your final grade will not be changed. But there is also a chance that the regraded result is better or worse than the initial grade.

If you choose "Do Not Request Regrade", the score above will be your final score, and you will be compensated based on that.

After you have made a choice for each and all the scenarios, ONE of them will be randomly chosen to determine your cost and the final grade.

{% for choice in form.s0 %} {% endfor %} {% for choice in form.s1 %} {% endfor %} {% for choice in form.s2 %} {% endfor %} {% for choice in form.s3 %} {% endfor %} {% for choice in form.s4 %} {% endfor %} {% for choice in form.s5 %} {% endfor %} {% for choice in form.s6 %} {% endfor %} {% for choice in form.s7 %} {% endfor %} {% for choice in form.s8 %} {% endfor %} {% for choice in form.s9 %} {% endfor %}
Scenario Your Choice
{{ form.s0.label }}{{ choice }}
{{ form.s1.label }}{{ choice }}
{{ form.s2.label }}{{ choice }}
{{ form.s3.label }}{{ choice }}
{{ form.s4.label }}{{ choice }}
{{ form.s5.label }}{{ choice }}
{{ form.s6.label }}{{ choice }}
{{ form.s7.label }}{{ choice }}
{{ form.s8.label }}{{ choice }}
{{ form.s9.label }}{{ choice }}
{% next_button %} {% endblock %}