{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %} Your income from part 1 of the experiment

In part 1 of the experiment it was randomly determined that for you the decision {% if role_trust_no_machine == 1%} as the first mover is relevant.

In this situation you have decided to send {{ player.dec_spd }} points to the other player.
Given your decision, the other player has decided to send you {{ oppo_spd }} points.

In this part of the experiment you have thus earned a total of {{ payoff_spd }} points. {% else %} as the second mover is relevant.

The other player has decided to send you {{ oppo_spd }} points.
Given this decision of the first mover, you have decided to send {{ player.dec_spd }}, to the other player.

In this part of the experiment you have thus earned a total of {{ payoff_spd }} points. {% endif %}



Your income from part 2 of the experiment

In part 2 of the experiment it was randomly determined that you take on the role {% if role_trust_no_machine == 1%} A.
In this role, you have chosen to send {{ player.dec_trust_no_machine }} points to the other person.
As a consequence, the other person had 3*{{ player.dec_trust_no_machine }} points at his disposal. From these points, the other person has sent you {{ oppo_trust_no_machine }} points back.

In this part of the experiment you have thus earned a total of {{ payoff_trust_no_machine }} points. {% else %} B.
The other person has sent you {{ oppo_trust_no_machine }} points.
As a consequence, you had 3*{{ oppo_trust_no_machine }} points at your disposal. You decided to send {{ player.dec_trust_no_machine }} points back to the other person.

In this part of the experiment you have thus earned a total of {{ payoff_trust_no_machine }} points. {% endif %}



Your income from part 3 of the experiment

The Machine Learning System predicted that you most likely {% if player.prediction == 0%} will not {% else %} will {% endif %} return points in the role B, in case the person in role A sends you points.

In part 3 of the experiment it was randomly determined that you take on the role {% if role_trust_no_machine == 1%} A.
The Machine Learning System predicted that the person in role B is most likely {% if player.prediction_oppo == 0%} not to return, {% else %} to return {% endif %} points, in case you send the 10 points..
You have decided to send {{ player.dec_trust_machine }} points to the other person.
As a consequence, the other person had 3*{{ player.dec_trust_machine }} points at his disposal. From these points, the other person has sent you {{ oppo_trust_machine }} points back.

In this part of the experiment you have thus earned a total of {{ payoff_trust_machine }} points. {% else %} B.
The Machine Learning System predicted that you most likely {% if player.prediction == 0%} will not {% else %} will {% endif %} return points in the role B, in case the person in role A sends you points.
The other person has sent you {{ oppo_trust_machine }} points.
As a consequence, you had 3*{{ oppo_trust_machine }} points at your disposal. You decided to send {{ player.dec_trust_machine }} points back to the other person.

In this part of the experiment you have thus earned a total of {{ payoff_trust_machine }} points. {% endif %}



Your overall income

Your total score is calculated as the sum of the points you scored in each of the decision situations.
For each of the points you receive 25 Euro-Cent. Thus your payout is in Euro:

0.25 * ( {{ payoff_spd }} + {{ payoff_trust_no_machine }} + {{ payoff_trust_machine }}) = {{ income }}



{% next_button %} {% endblock %}