{% extends "global/Page.html" %} {% load otree %} {% block title %} 契約の選択 {% endblock %} {% block content %} {% if player.id_in_group == Constants.company1_owner_id %}
あなたは企業1のオーナーです。
{% else %}あなたは企業2のオーナーです。
{% endif %}
あなたは自分で生産量を決められず、経営者が生産量を決められます。
そこで、自分の得られる利潤を最大にしてもらうために、経営者に以下の2つの契約のどちらかを示します。
契約1:利潤に比例して、経営者に報酬が支払われる契約
契約2:売上高に比例して、経営者に報酬が支払われる契約
両企業の経営者がそれぞれ生産量を選択すると、自分の得られる利潤は以下の表のようになります。
※経営者は利潤の2%を報酬として得ることができます。
| 自社\ライバル | {{Constants.production1}} | {{Constants.production2}} | {{Constants.production3}} | {{Constants.production4}} |
|---|---|---|---|---|
| {{Constants.production1}} | {% for profit1 in profit001_lst %}{{ profit1 }} | {% endfor %}|||
| {{Constants.production2}} | {% for profit2 in profit002_lst %}{{ profit2 }} | {% endfor %}|||
| {{Constants.production3}} | {% for profit3 in profit003_lst %}{{ profit3 }} | {% endfor %}|||
| {{Constants.production4}} | {% for profit4 in profit004_lst %}{{ profit4 }} | {% endfor %}
そして、両企業の経営者がそれぞれ生産量を選択すると、自社の売上高は以下の表のようになります。
※経営者は売上高の1%を報酬として得ることができます。
| 自社\ライバル | {{Constants.production1}} | {{Constants.production2}} | {{Constants.production3}} | {{Constants.production4}} |
|---|---|---|---|---|
| {{Constants.production1}} | {% for sales1 in sales011_lst %}{{ sales1 }} | {% endfor %}|||
| {{Constants.production2}} | {% for sales2 in sales012_lst %}{{ sales2 }} | {% endfor %}|||
| {{Constants.production3}} | {% for sales3 in sales013_lst %}{{ sales3 }} | {% endfor %}|||
| {{Constants.production4}} | {% for sales4 in sales014_lst %}{{ sales4 }} | {% endfor %}
あなたは、上記にある2つの表を見比べ、自分の得られる利潤が最大になるような生産量を
経営者に選んでもらいやすいと思われる契約を1つ選択してください。