Spaces:
Paused
Paused
File size: 832 Bytes
e40dce0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div class="card bg-light m-3">
<div class="card-body">
<h3>Trust Game — Rules</h3>
<ul>
<li>You are randomly paired as Participant A (sender) or Participant B (receiver).</li>
<li>A starts with {{ C.ENDOWMENT }} and may send any amount (0–{{ C.ENDOWMENT }}).
The amount sent is multiplied by {{ C.MULTIPLIER }} and given to B.</li>
<li>B may send any amount back to A (from 0 up to the multiplied amount).</li>
<li>Payoffs: A keeps ({{ C.ENDOWMENT }} − amount sent) + (amount B returns). B keeps ({{ C.MULTIPLIER }} × amount A sent − amount returned).</li>
<li>This is a one‑shot decision (no repeated rounds in this demo). Decisions are anonymous.</li>
</ul>
<p><em>Tip:</em> Decide independently; there are no right or wrong answers.</p>
</div>
</div>
|