{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round {{ subsession.round_number }}, Stage 1 {% endblock %} {% block content %} {% if player.subgroup == 1 %}

FOR THIS ENTIRE ROUND,

You are in the subgroup with DIFFERENT cost coefficients of all participants.

{% if player.marginal_cost == 1 %}

Your cost coefficient is 1, and therefore total cost function is \(x^2 \).
Somebody in your subgroup has cost coefficient 3, and therefore cost function \(3x^2 \).
Somebody in your subgroup has cost coefficient 6, and therefore cost function \(6x^2 \).

{% endif %} {% if player.marginal_cost == 3 %}

Your cost coefficient is 3, and therefore total cost function is \(3x^2 \).
Somebody in your subgroup has cost coefficient 1, and therefore cost function \(x^2 \).
Somebody in your subgroup has cost coefficient 6, and therefore cost function \(6x^2 \).

{% endif %} {% if player.marginal_cost == 6 %}

Your cost coefficient is 6, and therefore total cost function is \(6x^2 \).
Somebody in your subgroup has cost coefficient 1, and therefore cost function \(x^2 \).
Somebody in your subgroup has cost coefficient 3, and therefore cost function \(3x^2 \).

{% endif %}

The participants in the other subgroup all have SAME cost coefficient, and therefore the same cost function.
In particular, all participants in the other group have cost coefficient 1, and therefore cost function \(x^2 \).

{% endif %} {% if player.subgroup == 2 %}

FOR THIS ENTIRE ROUND,

You are in the subgroup with SAME cost coefficient of all participants.

Your cost coefficient is 1, hence the total cost for your effort level \(x \) is calculated as \(x^2 \).
Each participant in your subgroup also has cost coefficient 1, and exactly the same total cost function as you.

The participants in the other subgroup all have DIFFERENT cost coefficients, and therefore different cost functions.
In particular,
somebody has cost coefficient 1, and therefore cost function \(x^2 \);
somebody has cost coefficient 3, and therefore cost function \(3x^2 \);
somebody has cost coefficient 6, and therefore cost function \(6x^2 \);

{% endif %}

In this stage, what is your effort level? [0-100]

{{ form.effort.errors }} Your effort \(x \) =


= {{player.marginal_cost}} \(\times\) ( )\(^2\) = {% if player.marginal_cost == 1 %} {% endif %} {% if player.marginal_cost == 3 %} {% endif %} {% if player.marginal_cost == 6 %} {% endif %}


{% endblock %}