{% block title %} {# Add title here if needed #} {% endblock %} {% block content %}
In Round {{ subsession.round_number }}, the Worker has completed the following number of decodes:
Recall, as a Customer, your payoff in each round is calculated as follows:
{% if comp == 'fixed_wage' %}
In each round, your payoff depends on your level of satisfaction with the Worker’s service. The number of correctly completed decodes represents the effort the Worker puts into providing the service and the quality of their service. The more decodes the Worker completes, the higher the service quality, the greater your satisfaction, and the higher your payoff.
For example, suppose the Worker you are paired with completes 20 decodes. Your payoff for this round will be 50 + (20 * 6) = 170 tokens.
{% elif comp == 'service_charge' %}In each round, your payoff depends on your level of satisfaction with the Worker’s service, minus the service charge paid to the Worker. The number of correctly completed decodes represents the effort the Worker puts into providing the service and the quality of their service. The more decodes the Worker completes, the higher the service quality, the greater your satisfaction, and the higher your payoff.
Please note that you will pay a fixed amount of service charge of 40 tokens to the Worker in each round, regardless of the quality of service.
For example, suppose the Worker you are paired with completes 20 decodes. Your payoff for this round will be 50 + (20 * 6) – 40 = 130 tokens.
{% elif comp == 'pre_tip' %}In each round, your payoff depends on your level of satisfaction with the Worker’s service, minus the tip paid to the Worker. The number of correctly completed decodes represents the effort the Worker puts into providing the service and the quality of their service. The more decodes the Worker completes, the higher the service quality, the greater your satisfaction, and the higher your payoff.
Please note that you will decide how much to tip the Worker in each round. The amount of tip can range from zero up to 80 tokens. That is, you can tip nothing, can tip a maximum of 80 tokens, or can tip anywhere in between. Importantly, you tip the Worker before they provide the service.
For example, suppose you decide to tip 40 tokens, and then the Worker you are paired with completes 20 decodes. Your payoff for this round will be 50 + (20 * 6) – 40 tokens = 130 tokens.
{% elif comp == 'post_tip' %}In each round, your payoff depends on your level of satisfaction with the Worker’s service, minus the tip paid to the Worker. The number of correctly completed decodes represents the effort the Worker puts into providing the service and the quality of their service. The more decodes the Worker completes, the higher the service quality, the greater your satisfaction, and the higher your payoff.
Please note that you will decide how much to tip the Worker in each round. The amount of tip can range from zero up to 80 tokens. That is, you can tip nothing, can tip a maximum of 80 tokens, or can tip anywhere in between. Importantly, you tip the Worker after they provide the service.
For example, suppose the Worker you are paired with completes 20 decodes, and then you decide to tip 40 tokens. Your payoff for this round will be 50 + (20 * 6) – 40 tokens = 130 tokens.
{% endif %}Please click ‘Next’ to continue.
{{ next_button }}