{{ block title }} Control Questions {{ endblock }} {{ block content }}

(1) Suppose the group participants decided as follows:


Participant a {{ if player.role == 'a' }} (You) {{ endif }} chooses Field B
Participant b {{ if player.role == 'b' }} (You) {{ endif }} chooses Field B
Participant c {{ if player.role == 'c' }} (You) {{ endif }} chooses Field C

{{ formfield 'control_1' }}


(2) Suppose the group participants decided as follows:


Participant a {{ if player.role == 'a' }} (You) {{ endif }} chooses Field C
Participant b {{ if player.role == 'b' }} (You) {{ endif }} chooses Field A
Participant c {{ if player.role == 'c' }} (You) {{ endif }} chooses Field C

{{ formfield 'control_2' }}


(3) Suppose the group participants decided as follows:


Participant a {{ if player.role == 'a' }} (You) {{ endif }} chooses Field A
Participant b {{ if player.role == 'b' }} (You) {{ endif }} chooses Field B
Participant c {{ if player.role == 'c' }} (You) {{ endif }} chooses Field C

{{ formfield 'control_3' }}


(4) Suppose the group participants decided as follows:


Participant a {{ if player.role == 'a' }} (You) {{ endif }} chooses Field C
Participant b {{ if player.role == 'b' }} (You) {{ endif }} chooses Field C
Participant c {{ if player.role == 'c' }} (You) {{ endif }} chooses Field C

{{ formfield 'control_4' }}


{{ next_button }}
Your payoff in a period depends on the following:

(1) How many other Participants in your group have chosen the same Field as you, and (2) whether you are on your field (Field {{ player.role.upper }}), or on one of the other fields (Fields {{ if player.role == 'a' }}B and C{{ elif player.role == 'b' }}A and C{{ else }}A and B{{ endif }}). {{ if group.high_payoffs }}
  • If no other participant has chosen the same field as you, you will receive 0 points (no matter if you are on your field or on someone else's field).
  • If one other participant has chosen the same field as you, you will receive 10 points if it is someone else's field, and 30 points if it is your field.
  • If two other participants have chosen the same field as you, you will receive 20 points if it is someone else's field, and 60 points if it is your field.
{{ else }}
  • If no other participant has chosen the same field as you, you will receive 0 points (no matter if you are on your field or on someone else's field).
  • If one other participant has chosen the same field as you, you will receive 10 points if it is someone else's field, and 11 points if it is your field.
  • If two other participants have chosen the same field as you, you will receive 20 points if it is someone else's field, and 22 points if it is your field.
{{ endif }}
Moreover, in every period you will receive additional points that are independent of your choices. In particular: {{ if group.lumpsum }}
  • Participant a {{ if player.role == 'a' }} (You) {{ endif }} will receive 30 additional points per period.
  • Participant b {{ if player.role == 'b' }} (You) {{ endif }} will receive 10 additional points per period.
  • Participant c {{ if player.role == 'c' }} (You) {{ endif }} will receive 10 additional points per period.
{{ else }}
  • Participant a {{ if player.role == 'a' }} (You) {{ endif }} will receive 10 additional points per period.
  • Participant b {{ if player.role == 'b' }} (You) {{ endif }} will receive 10 additional points per period.
  • Participant c {{ if player.role == 'c' }} (You) {{ endif }} will receive 10 additional points per period.
{{ endif }}


{{ endblock }}