{% extends "global/Base.html" %} {% load staticfiles otree %} {% load static %} {% block title %} Task 2 Instructions {% endblock %} {% block content %}
Suppose you are Participant N and you are placed in this configuration:
Suppose the round starts with Participant P's turn. As an example, Participant P decides not to delete any link. The configuration remains unchanged:
Suppose it is now your turn. As an example, suppose you decide to delete the link with Participant P. The configuration is now changed because you have deleted a link:
Suppose it is now Participant L's turn. As an example, Participant L decides not to delete any link. The configuration remains unchanged:
Suppose it is now Participant K's turn. As an example, Participant K decides to delete the link with Participant P. This gives us the following configuration:
Suppose it is now Participant U's turn. As an example, Participant U decides to delete the link with Participant L. This gives us the following configuration:
Suppose that from this turn onwards, everybody decides not to delete any link, and therefore the round ends.
These are the points you win in this round:
Participant N (You)| Points from | Amount of Points |
|---|---|
| Deleting links with others | {{ Constants.deletelink }} |
| Links kept at the end of the round | 2 × {{ Constants.remainlink }} = 200 points |
| Total Points | 310 points |
Notice that some of the participants can earn points solely by deleting links with others. An example is Participant U:
Participant U| Points from | Amount of Points |
|---|---|
| Deleting links with others | {{ Constants.deletelink }} |
| Links kept at the end of the round | 0 points |
| Total Points | 110 points |
Notice also that some participants can earn points even without deleting any link. An example is Participant L:
Participant L| Points from | Amount of Points |
|---|---|
| Deleting links with others | 0 points |
| Links kept at the end of the round | 2 × {{ Constants.remainlink }} = 200 points |
| Total Points | 200 points |
It is not possible for participants to lose points. However, a participant may win zero points in a round. An example is Participant P:
Participant P| Points from | Amount of Points |
|---|---|
| Deleting links with others | 0 points |
| Links kept at the end of the round | 0 points |
| Total Earnings | 0 points |
You will now take a quiz to ensure you understand the instructions.