{% extends "global/SimplePage.html" %} {% load staticfiles otree_tags %} {% load static %} {% block title %} Additional Reward Opportunity (Example) {% endblock %} {% block content %}
In the Task 1 of today's experiment, you have the chance to earn an extra £1 as a bonus reward per question. This reward will be added to your participation fee at the end of the experiment.
Below is an example of Mr. X to demonstrate how you can earn the additional reward.
1. Mr X answer the question below:
On a scale from 0 to 100 percent, what are the chances that most people believe it will rain tomorrow?
Mr. X thinks that most people believe there is a 65% chance of rain tomorrow.
2. Other participants submit responses:
Other participants reported the chances that it will rain tomorrow.
Most people believe there is a {{avg_response}}% chance of rain tomorrow
3. Comparison: If the difference between Mr. X's response and the average is smaller than a randomly chosen number,
Mr X qualify for the £1 bonus reward. Otherwise, Mr X earn 0 points.
Randomly chosen number is {{random_number}}
{% if difference < random_number %}
Difference ({{difference}}) is smaller than the randomly chosen number. Mr. X wins 100 points.
{% else %}
Difference ({{difference}}) is smaller than the randomly chosen number. Mr. X wins
0 points.
{% endif %}
Remember, the closer Mr X's belief aligns with the average belief, the higher Mr X's chances of earning the additional £2 reward.
Click the ‘Next’ button to proceed.
{% include "global/ButtonNext.html" with button_text="Next" %} {% endblock %}