{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round {{ subsession.round_number }} {% endblock %} {% block content %}

FOR THIS ROUND,

You are in the group 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 group has cost coefficient 3, and therefore cost function \(3x^2 \).
Somebody in your group 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 group has cost coefficient 1, and therefore cost function \(x^2 \).
Somebody in your group 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 group has cost coefficient 1, and therefore cost function \(x^2 \).
Somebody in your group has cost coefficient 3, and therefore cost function \(3x^2 \).

{% endif %}

In this round, 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 %}