{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %}

Round {{ subsession.round_number }}

Accident happens or not in this round: {{ player.accident_happen }}

Your loss in this round: {{ player.loss_level }}

Your premium in this round: {{ player.premium }}

Your deductible in this round: {{ player.deductible }}

Your remaining assets in this round: {{ player.payoffs }}

Your payoffs in this round: ${{ player.earnings }}

{% next_button %}

Your car values ECU25,000. Once an accident occurs, it can cause slight loss (ECU500), half loss (ECU12,500), or total loss (ECU18,750) with equal probability, i.e. each of the losses could happen at 1/3 (33.33%).

property value = Value of your car in the end of this round - Premium - Loss/Deductible (which is lower)

Note that for slight loss and half loss, you can get full reimbursement except for the deductible. While for total loss, you can only have 75% of your car value, i.e. 18,750, except for the deductible.
Your payoff rate is ECU1,000 = $1

{% endblock %} {% block script %} {% endblock %}