-
Notifications
You must be signed in to change notification settings - Fork 5
/
2020-2 Contract Design.fex
1713 lines (1586 loc) · 63.7 KB
/
2020-2 Contract Design.fex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Introduction
===
lecturers:
alexander stremitzer (prof law at bonn)
nate atkinson (postdoc law & economics)
target:
how to structure deals strategically
(off-topic is the legal language to implement this)
strategically read contracts:
when cost-plus -> expect cost control clauses
when fixed price -> expect quality control clauses
strategically write contracts:
choose appropriate overall structure
align incentives to reduce transactions cost
why state enforces contracts:
well functioning system increases societal health
as voluntary transactions enhance welfare
bc seller sells only if price >= valuation
bc buyer only buys if price <= worth
worth - valuation = welfare increase
other arguments:
companies do not have to prepare for other scenarios
limitations:
duress, misrepresentation, fraud, uninformed decisions
state must not enforce in these cases
like parties benefiting by hurting others (hitman)
like anticompetitive contracts (preisabsprache)
like externalized cost (selling drug)
like unknown interests (children, incapacitated)
enables economic growth:
specialization generates value, but needs division of labour
the cheaper trade, the more fragmented division possible
hence the richer society gets
transaction cost:
might make deal more expensive than what its worth
by this, may also prevent some deals to happen
need to optimize transaction cost by optimal clauses
contract writers as "transaction cost engineers"
contractible effort
===
contract motivation:
coordination:
agreement about technicalities without conflict of interest
"cheap talk" is enough (no sanctions needed to enforce)
like on which street side to drive on generally
like at which time to deliver so buyer/seller meet
spot transaction:
immediate exchange of goods
like buying an apple & paying for it at the store
sequential transactions:
goods/services exchanged, potential conflict in the future
like sale (need guarantees product meets expectations)
conflict of interest:
ex-ante (before) and ex-post (after) incentives might be different
rational choice could be to defect later on
as other party knows, might prevent contract
solution options:
use ex-ante interests to commit to value
to settle potentially conflicting ex-post incentives
repeated transactions:
smaller contracts / reputation systems
works if payoff defect < future transactions benefit
prevent problem:
agree on technical solution that prevent problem
like pulling teeth of viper, smart contracts, ...
compensation:
compensate for damages
prevents problem if compensation cost higher than defection payoff
criminal sanctions:
penalize injurer
prevent problem if penalty cost higher than defection payoff
value to commitment:
commit tools:
governance systems and institutions
contracts (use formal language to clearly commit)
promises (willingness to not break a promise, being honest)
moral institutions (willingness to be fair to others)
technical solution (like smart contracts)
enforce by law, continued relationships, reputation, social sanctions
smaller commits:
result in smaller temptations to break it
work with milestones (smaller units of work & payment)
transforms one-shot to repeated transaction
contract structure:
define payoff resulting from different clause of action
depends on social model, contracts, institutions, ...
general approach:
outcomes result from human interaction, constrained by institutions
model behaviour to find out likely outputs
motivates institutions to be constructed
model human behaviour:
assumptions need to be realistic
like "more money better", "less work better"
institution viewpoints:
evolutionary hypothesis (existing structures exist bc they work)
social engineering ("triumph of reason")
piecemeal social engineering (look at existing contracts)
utopian social engineering (mechanism design, game theory)
analyse existing contracts:
be humble (may contain concealed wisdom)
hence might not be best to simply rewrite contracts
but game theory / mechanism design helps to improve
contract types:
care about risk, quality and cost
choose appropriate type so interests align
cost-plus:
seller invoices direct cost + some profit margin
fit if quality important / monitoring difficult, small companies
need to control cost, to avoid expected cost overruns
with cost ceiling, approval for bought products, ...
fixed price:
seller invoices full cost in advance
fit for large / diverse operator
need to control quality, to avoid expected quality underuns
with warranties, define product quality, certification
contract value:
work done:
seller is able to produce goods at some cost
which is lower than benefit of those to buyer
risk-shifting:
shift risk from risk-averse to risk-neutral party
like large operator can diversify / take risk better
shift risk to party controlling it
like seller might has superior information about the product
price rises due to the risk shifting, but worth to other party
like insurance contracts
contractible effort examples
===
before/after incentives:
"the farmer and the viper" (fable by aesop)
setup:
viper is in a ditch, and cold / about to die
farmer wants to buy the viper, but does not want to get bitten
viper promises to not bite
farmer takes viper home and warms it up
viper bites farmer, farmer dies
trust game model:
farmer/viper payoff
(1) 0/-20 not saving viper; viper dies
or (2) saving viper, then
(a) 5/5 viper does not bite farmer
(b) -20/10 viper bites farmer
hence rational choice of viper to bite
hence rational choice of farmer not to save
save the viper:
need to change the game so viper does not bite any more
prevent bite by taking tooth out or mouth muzzle
interpretation:
at (1) interests align (viper live, farmer save)
but at (a or b), conflict of interests
hence need to agree at (1) to solution
at (2), an agreement is impossible
conflict of interests:
inventor vs VC:
inventor / VS payoff
(1) 1/1 not revealing idea
or (2) revealing, then
(a) 6/6 VC cooperates
(b) -20/20 VS steals idea
hence VC will steal the idea
buyer vs producer:
if payment first, buyer risks low-quality product
if product first, producer risks missing payment
more drastic if tailored product
insurance vs customer:
if house burns down, insurance does not want to pay
asymmetric information sale:
when selling something other has not full information about
need assurances, else transaction likely fails
conclusion:
client mistrusts if no warranty given as seller has information superiority
seller needs to grant warranty or else sale will no happen
hence used common interest ex-ante
to agree on terms which resolve different interests afterwards
value to commitment:
warranty clause:
seller sells only high quality goods, valuation at 60
buyer values low/high quality at 20/80, but unable to detect quality
as buyer values product at 50, no sale happens
by including warranty clause (pay 60 if low quality)
sale happens, and surplus 20 is created (at buyer or seller)
moral hazard
===
when agents actions are unobservable
need to compensate on something different than effort
creates incentive issues
terminology:
incentive constraint:
if incentive exists to act as expected
for example contingency clause motivating high effort
participation constraint:
if deal has expected positive payoff for party
for example payoff higher than cost of production / risk
first-best:
exchange reached if everyone acts in the common interest
unreachable in practice (ignores private interests of actors)
first-best risk allocation when company takes all the risk
is only possible if agent is honest
contracts needed bc in reality agents use freedom for self advantage
second-best:
as close as possible to first-best but including private incentives
hence the realistic contract actually feasible in practice
lose some contractual pie to transaction cost, distortion
zero sum game:
if no value created (only allocated)
game-theory approach, but not always true in contracts
bc mutually beneficial clauses increase contractual pie
mutually beneficial term:
introduce clauses where costs of p1 < benefit for p2
because the contractual pie increases
hence can compensate other party for loss
contingency contract:
payoff depending on result of project
legal remarks:
by law, some contingency may apply automatically
"auftragnehmer muss sorgfältig tätig sein"
=> by law required to deliver up to some quality
needs not to be spelled out in legal document
legal doctrine applies automatically
non-contractable effort:
if effort not directly measurable contingency clause impossible
when missing:
describability (high-effort not known in context)
like travelling sales person; boss is not present
observability (monitoring might not be possible)
like software engineer; boss does not understand work
verifiability (effort not provable in court)
link employee performance; low effort might not be documented
alternatives:
contract on signal:
contingency clause on signal of effort
like commission, bonus, stock options, hours worked
invest in monitoring:
expand contractable contingencies to be observable
invest in monitoring, specialized courts / dispute boards
like cameras on construction sites, ...
self-enforcing mechanism:
reputation mechanism for repeated observable interaction
helps to reduce reliance on verifiability
needs observability to be useful
like not extending contract if performance bad
contract on signal:
signal types:
"perfect signal":
if output deterministically on effort
simply use contingency contract on signal
"stochastic signal":
if output influenced by other factors than effort
signal is noisy, has some error term
like general market health, colleagues in the office, ...
if output reasonable influenced by effort then still useful
strategies:
step function:
payoff as soon as some signal strength reached
if noise is known, can compensate all high effort equally
like shifting support scheme
but if noise not exactly known / error terms
then may lead to changed incentives throughout the project
if goal become unreachable or is already reached => low effort
linear:
payoff scales with signal strength
but if noisy, may gives different payoff to same real value
risk sharing:
create value by shifting risk from risk averse to risk neutral party
principle:
"who controls the risk should bear risk"
like producer controls quality
like regional firms controls regional law changes
risk types:
risk neutral pays expected value
risk averse pays less than expected value
risk seeking pays less than expected value
assumptions:
risk averse individuals assumption:
decreasing marginal utility of money
if low income rather than millionaire
lifestyle changes more radically with same amount
prospect theory:
expected payoff usually not used by individuals
prefer lower but secure payoff than larger but insecure (risk-averse)
prefer higher but insecure cost than lower but secure (risk-seeking)
value own property higher than economic value
special case lottery participant:
actively risk-seeking
bc probably only way to earn that much money
risk diversification:
helps to reduce risk
can take higher risks, but still be risk neutral
example:
if owner of buildings & construction company at the same time
risk of earthquake close to neutralized
law of large numbers:
probability that car crashes unclear, risky
but overall number of crashed cars in some area similar
risk taking party:
less risk-averse party should take all risks
viewpoint conflicts:
from risk-sharing point of view "first-best risk sharing"
party which can take higher risks should bear it
from incentive point of view "first-best incentives provision"
party which controls risks should bear it
will lose welfare through transaction cost
for example manager more risk averse than employer, but controls risk
uncertain output:
optimal incentive scheme not necessarily increasing in output
like fast delivery is good, but do not want recklessness
uncertain signals:
could be complex / non-linear
use probability density functions for good/bad measurements
use likelihood ratio of these curves to determine signal
mathematical foundation:
derivation exists on how optimal contract c depends on input/output
if effort contractible, c independent on output
if effort not contractible, c dependent on output
if likelihood ratio high, then agent should be rewarded
if likelihood ratio low, then signal must be higher for same reward
effort measurement:
if effort contractable, then contract directly on it
if effort non-contractable, then optimal contract depends on output
principle:
relationship between optimal contract & output
works through information content of the outcome
valuable information:
information must be a signal rather than noise
(like slow delivery time could just mean full streets)
signal correlated to other contains no value
comparisons to other agents:
do relative performance evaluation to neutralize noise
like two investors in same market filter out noise
distortion:
measured goals are targeted by actors if known
but potential problem if real target is not measured (only proxy)
"if measurement becomes a target, it ceases to be a measurement"
could try to be intransparent concerning what is actually measured
output factors:
relatively undistorted (like measure sales)
but very much noise (why is it high / low?)
input factors:
very distorted (how to measure effort?)
but not much noise (can observe single person)
shifting support schemes:
assume curve known for low/high efforts
if supports (=ends) of distributions do not overlap
then can punish where only low effort was a possible input
no risks for compliant agents
like claw back clause (some money not payed out at some signal)
robustness to error:
harsh punishments can start as soon as no overlaps anymore
but if error in expected curves then could punish good agents
like incorrectly estimated market risk
linear contracts perform better with errors
path dependence:
effort is chosen not only once
information & incentives might change over time
like if goal unreachable then step function motives low effort
monitoring:
output monitoring:
more prone to error; increasingly when more "downstream"
external factors can affect output ("noisy signal")
but easy & inexpensive
like measuring worked hours, ...
input monitoring:
some signals very accurate
like "hours worked"
but might be expensive/hard to observe (supervisors, monitoring technologies)
like "working hard" is again hard to observe
distortion:
monitoring might not be able to catch all it needs to
agent will focus only on tested outputs
possibly better to not create incentives at all
like measure testing ability but not actual skill
reduce monitoring cost (becker):
make audits probabilistic & increase punishments
archive same deterrence with same expected cost
but limited wealth (simply cannot pay punishment)
but proportionality to crime lost (morally wrong)
but chilling effect (simply will not do task anymore)
but behavioural (small probabilities difficult to comprehend)
rules vs standards:
fixed rules define how agents have to perform
easy to enforce but distortion likely, inflexible
standards define general ways how to behave
by standards committees & other knowledge authorities
undistorted & flexible, but vague & difficult to enforce
incentive rent-extraction tradeoff:
low commission for distributor results in high profit per sale
but likely results in only low effort of distributor
vice-versa with high commission
probabilistic monitoring:
monitor probabilistic while increasing punishment
keeps same deterrence with lower monitoring cost
conflict of view:
breaks with traditional view of punishment proportional to crime
in favour of making it more efficient (mechanism design)
assumptions (which are likely wrong):
humans are rational with small probabilities
no wealth constraints
no monitoring mistakes
no "honest" mistakes (need to be able to observe intent)
conclusion:
simplifying assumptions make process look rational
but recommendation not that great when relaxing them
wrong assumptions introduce chilling effect
which prevents trade as risk of wrong punishment too great
limited wealth changes risk behaviour:
limited liability / bankruptcy (can only pay what is available)
the less wealth, the lower potential downside
hence higher willingness to gamble upside
bc do not have to pay cost of downside
asymmetry in risks and rewards distorts behaviour
willingness to game:
if utility does not decrease
like take money of company rather than personal reserves
prevent:
input monitoring for low-wealth individuals
safety monitoring
capital requirements for banks
mandatory insurance
moral hazard examples
===
moral hazard:
firm (principal) introduces CRM to increase sales
consultant (agent) is payed to help introducing it
model:
consultant can choose high/low effort
for high effort, cost is 100, company benefit 200
for low effort, cost is 10, company benefit 20
high effort joint gain 100, low effort gain 10
fixed fee contract proposals:
(1) for fixed fee contract for 150 & low effort chosen
then principal loses 130, hence no deal
"participation constraint" violated
(2) for fixed fee contract for 15 & low effort chosen
then principal/agent both earn 5, hence contract entered
(3) contingent contract:
payment as function of condition
"if high effort, then 150 payed"
principal/agent both earn 50, hence deal valid
agent agrees to constraint bc else no contract
mutually beneficial term:
from (2) to (3) cost of agent increased by 100-10 = 90
but benefit for principal increased by 200-20 = 180
hence contractual pie increased by 180-90
use surplus money to pay agent
non-contractable effort:
performance of manager depends on effort & market condition
setup:
manager spends low/high effort (10 / 100 cost)
company benefit for high effort 50% for 400 (success), else 0
company benefit for low effort 5% for 400 (success), else 0
best case output is hence 0.5*400 + 0.5*0 - 100 = 100
fixed salary:
company bears all the risks
manager has no incentive any more for high effort
step function:
300 bonus in case of success else 0
then manager chooses high effort
hence manager expected payoff 0.5*300 + 0.5*0 - 100 = 50
hence company expected payoff 50
best-case reached (as 100 is best-case joint surplus)
(depending on bargaining power, company or manager earns more)
like bonus depending on reached goals
sell shop:
manager buys company for 50
then manager chooses high effort
both again get expected payoff of 50
like management buyout
risk sharing:
for step function; both bear risk
for sell shop; agent bears all risk
risk averse manager:
step function compensation valued at 30 (-20)
sell shop compensation valued at 20 (-30)
step function preferred by manager
but joint surplus only at 80 (-20)
risk sharing:
cell phone insurance by apple:
able to diversify risks & enough money
but user controls risks if cell phone is destroyed
=> insuring increases risk of damage ("moral hazard")
landlord / tenant agreements:
risk neutral rich landlord
values risk of loosing 100k close to expected cost
risk averse low income tenant
values it much higher bc of resulting lifestyle impact
insurance:
risk neutral insurance
deductible (some low amount beared by the insured)
limits (max amount payed out)
co-insurance (some percentage beared by the insured)
exclusions (exclude some damages, reductions for recklessness)
mortgage crisis:
combine mortgage claims in packets (risk diversification)
distribute to many agents (low price -> risk neutral agents)
mortgage granted if background check passed for applicants
and if vehicle score > 620, then selling mortgage in the bonds possible
observed more defaults > 620, bc banks skipped background checks
as risk sold out, no incentive to evaluate risk (moral hazard)
resolve by "skin in the game" -> banks need to keep some part
many institutions bought these bonds bc AAA ratings & high interests
production / distribution risk sharing:
distributor D earns 11% + expenses, rest for producer P
D high effort:
through payment structure, D only incentive to cover own cost
introduce monitoring through P (meaningful consulting, ...)
include non-discriminatory clauses to movies produced by D
(expected to be non-distorted, bc interests align)
P high efforts:
P has requirements to involve key persons, minimum budget
P also has exclusivity clause (no different distributions)
no-cross-collateralisation:
(movies are accounted separately)
prevents D taking unnecessary risks after successful movie
prevents P to stop investing into films after bad movie
no sell-the-shop:
pricing unclear, effort unobservable
uncertain output:
truck driver delivery speed
fast & intact delivery suggests good job
but too fast delivery suggests reckless driving
probability density function:
deliver speed curve c_good of good driver more to right
deliver speed curve c_bad of bad driver more to left
calculate likelihood ratio c_good / c_bad
as probability density gets higher, more likely good driver
include reckless driving:
curve of bad driver increases for very fast speeds again
hence likelihood ratio decreases again at the end
path dependency:
bridge construction:
bridge designed for 5 year construction
in the final phase cable & damper technology installed
base payment & big bonus if some quality reached
but potentially during the project goal reached or unreachable
hence low/high effort incentive change
monitoring:
sales company:
unclear if contingency should be placed in sales or on monitoring results
sales could be too noisy or monitoring too expensive
southwest airlines:
employees with large profit sharing for employees
efforts of single employee has no real effect (signal is noisy)
wristband amazon:
allows to calculate how effective employees perform
teacher bonus:
paying teachers based on PISA test results
teachers will shift priorities to actually tested skills
might leaves out social skills, critical thinking, ...
might motivate to cheat
football:
get bonus with each goal
players argue over who shoots, rather than the best does
sears:
commission based on repairs
unnecessary repairs / disgruntled customers
salefites:
commission for each windshield installed
but if its broken, then had to fix for free
worked well
manager pay based on accounting:
managers might reduce R&D for short term benefit
use stock options, claw clauses, long-term payout to combat
agency marketing:
could contract to spend fixed amount on marketing specific product
but distortion possible, potentially nonsense amount
likely better to agree on "best effort" standard of industry
distributor:
with commission-based sales difficult to balance commission
with directly sold goods, distributor needs enough money to do so
could add reputation / repetition system
probabilistic monitoring:
rent car:
forgot to pay for the gas at gas station
able to pay later + potentially a fine
with probabilistic monitoring, high fine / jail time required
limited wealth problem:
manager bonus:
manager gets bonus of 10% of companies benefit
investment 1 has 50% that payoff 100, else 0
company expected = 50, manager expected = 5
investment 2 has 50% that payoff 100, else -200
company expected = -50, manager expected = 5
legal regimes
===
how background rules affect contract design
courts may not enforce contract as written
tasks of contract designer:
economic problem (mechanism to minimize transaction cost)
legal problem (get court to enforce mechanism as intended)
consideration:
to form contract consent is enough in civil law
else need "consideration" (own behaviour somehow restricted)
contracts without exchange potentially not enforceable
could ask for small monetary amount or "good faith"
but courts could also imply good faith without it being stated
contract enforcement:
formation:
no contract exists
requirement as specified in contract unmet (like physical signature)
like amount > 500, duration > 1y need written contract (USA)
like sale of land without notary (CH)
like only promise exists (bc promise != contract)
defenses:
contract not enforceable
like misrepresentation, unconscionability
like public policy
interpretation:
contract means something else
most legal problems happen in this area
like price unreasonable for informed parties
excuses:
non-performance is excused
impracticability / frustration of purpose
like rented concert avenue burning down & owner not responsible
then can not sue him for lost money
remedies:
desired remedy (payoff) not available
under-compensatory damages (for example for immaterial damages)
like immaterial harm (band misses performance, privacy violations)
remedies:
punitive:
additional to compensation get punishment
like additional money or material payout
less common in civil law
compensatory:
specific (breaching party forced to perform)
substitutional (other remedy payed out)
substitutional remedy amount:
expectation (as much as performance would have resulted in)
calculate like promised value - received value
reliance (restore pre-contract state)
calculate like value before - value now + damages incurred
restitution (reverse all exchanges; damages are not reimbursed)
litigated damages (contract predetermined amount payed)
default is expectation damages
litigated damage clauses:
only enforced if not considered excessive, else "penalty clause"
but what may seems excessive ex post might be reasonable ex ante
convince court and/or declare explicitly in contract
courts:
may not always enforce contracts such as it is written
will try to interpret contract to intended meaning
invalid clauses:
when unconscionable or against public policy
if appearing unfair (but might only be the case ex post!)
constructive conditions:
when conditions obviously depend on each other
does not always has to be specified explicitly
like when customer does not pay in sell contract
then do not have to deliver good
in court:
understanding the deal structure (ex-ante incentives)
helps to make arguments & counterarguments in litigation
legal regimes examples
===
substitutional remedy:
serious injury on hand results in work defects
doctor persuades patient for experimental hand surgery
doctor promises 100% restoration of hand function
but surgery went terribly wrong
model:
values always pre-op, post-op and promised
value of hand 5000/2500/10000
cost of operation 0/1000/1000
pain from surgery 0/1500/1500
assuming doctors experience benefit worth 2000
substitutional remedy amounts:
expectation damages 10000 - 2500 = 7500
reliance damages 5000 - 2500 + 1000 + 1500 = 5000
restitution damages 1000 + 2000
hard to enforce:
NDA:
source of information is hard to determine
hard to enforce liquidated damages ex-post
hard to show actually incurred damages
ex-ante remedies to enable contract:
inventor wants to work with VC for more success
but risky bc VC could disclose idea
model:
if inventor does not disclose idea to VC (1/1)
else inventor discloses to VC
(1) if VC performs, then (6/6)
(2) or VC does not perform (-20/20)
not performing two possible outcomes
(2a) if VC simply does not perform (50% chance) (0/20)
(2b) else VC additionally discloses idea (50% chance) (-40/20)
no deal bc VC will choose not to perform
contract + expectation damages:
if VC simply does not perform (50% chance) (6/14)
else VC additionally discloses idea (50% chance) (6/-26)
hence VC does not perform payoff (6/-6)
deal bc VC will choose to perform
assume (2a) and (2b) not distinguishable / (2b) not quantifiable:
if VC simply does not perform (50% chance) (6/14)
else VC additionally discloses idea (50% chance) (-34/14)
hence VC does not perform payoff (-14/14)
no deal bc VC will choose not to perform
assume liquidated damages of 16 or higher:
court only needs to observe breach (not quantify damage)
if VC simply does not perform (50% chance) (16/-4)
else VC additionally discloses idea (50% chance) (-24/4)
hence VC does not perform payoff (-4/4)
deal bc VC will choose to perform
assume liquidated damages considered excessive:
then in case (2a) only remedy of 6, hence only (6, 12)
hence VC does not perform payoff (-9/9)
no deal bc VC will choose not to perform
plain language vs intended meaning:
beanstalk (marketing) vs AM general (hummer cars)
deal:
beanstalk markets brand
gets 35% of all deals including hummer
conflict:
AM general sells brand to GM motors
but does not want to pay 35%
question:
what was the mutual intent of parties at time of written contract
plain language (as it was written) or would that be absurd?
argument:
plain language needs to be interpreted
as how reasonable parties would have agreed to deal
beanstalk is in the trademark business
and hence gets commission for sales, merch, ...
but not entitled to commission for sale of whole company
as hardly intended in clause, as not contributed to it
counter arguments:
parties did not want to clear up all cases
to prevent conflicts & sign fast
but possibly were aware of this potential outcome
asymmetric information
===
in contrast to complete information yielding efficient outcome
with asymmetric information only second-best possible
happens when one party knows something the other does not
phenomena:
(low value) seller gets information rent or
high value goods are not traded
in continuous quality case, both happen at same time
buyer tradeoff:
allocative efficiency (good goes to party valuing it highest)
extracting information rent (overpaying for good)
choosing a price:
if low price, then information rent
but no allocative efficiency (high quality units not sold)
if high price, then allocative efficiency
but information rent (low quality sold for price of high)
if intermediate price both at the same time
unravelling of the market:
model:
seller can observe quality, buyer can not
continuous value range
buyer value = seller value + 10
first-best:
with complete information, all goods are sold
as each good is worth more to buyer than to seller
offer 50:
average value to seller is 50, hence average value to buyer is 60
any seller value lower than 50 will sell
50% chance of trade, average buyer value is 25 + 10 -> payoff = -7.5
allocative inefficiency (because only 50% trade)
information rent payed for (many goods value lower than 50 sold)
offer 25:
same problem as offer 50
25% chance of trade, average buyer value is 12.5 + 10 -> payoff = -0.625
offer 5 (chosen by buyer):
5% chance of trade, average buyer value is 2.5 + 10 -> payoff = 0.375
eliminating information asymmetry:
costly, sometimes impossible
why:
payoff when selling low value goods (information rent)
but high quality trades will not be possible anymore
third party verification:
have expert / rating systems examine good
but costly & risk of collusion
require disclosure:
presumes information is verifiable at some point
background legal rules which enable credible communication
(misrepresentation / fraud laws)
screening:
when uninformed party creates contract
customers will all behave the same ("pooling utility")
but want to charge different prices ("differential utility")
pooling equilibrium:
customers all take same contract
but contractual pie smaller than it has to be
due to allocative inefficiency (not all goods bought)
or information rent payed (too high a price)
separating equilibrium:
customers take different contracts
use differently appealing aspects to sell customer types
based on differential utility, design multiple types of contracts
maximizes joint surplus (both low / high quality goods sold)
like support service to frequent users
like excessive working hours for high quality employees
signalling:
when informed party creates contract
good types might accept inefficient terms to signal high type
like to sell warranty as a premium product seller
offer generous warranty:
expensive, but even more for low quality
distortion at the top (as behaviour of top producers changes)
no distortion at the bottom (low quality producers will never offer warranty)
but creates moral hazard
invest in brand:
costly commit to high quality (marketing, actually produce high quality)
generate high brand value at customers
then very costly to defect, as brand value is lost instantly
for unknown brand less a problem (as not much to lose anyway)
education & signalling:
education more costly for low-types, hence signal for high-type
hence invest in education independently if employee benefits
same reasoning for low-salary internship which high-type accepts
as reasonable probability afterwards for job offer
in contrast to low-type which will be detected
distortion:
behaviour changes suboptimally based on contract setup
with asymmetric information:
can no longer fully trade in all cases (first-best unreachable)
design distortion to include private incentives
to make the contractual pie as large as possible
might be necessary to reach optimal second-best contract
bottom vs top:
top distortion when high quality goods do not trade
like excessive education only to signal value
bottom distortion when low quality goods do not trade
like chip producer corrupting cheap chips
contract negotiation:
good contractual solutions might exist
but difficult to negotiate
inefficient terms:
inefficiency is accepted
because else negative signal might be sent
like prenuptial agreement, tenant contract
default terms:
when contractual incompleteness likely
create default terms to replace negotiations
asymmetric information examples
===
asymmetric information:
overlapping prices for high/low quality car:
low /high quality undetectable for buyer
buyer simply assumes with 50% probability if high/low quality
setup:
high quality car1 (buyer value 100, seller value 50)
low quality car2 (buyer value 50, seller value 20)
first-best:
sell car1 for 50 < price < 100
sell car2 for 20 < price < 50
bargaining power determines exact price
all cars are sold
price 20:
payoff buyer 15, payoff seller 0
only low quality cars traded; 50% no trade happens
price 50:
payoff buyer 25, payoff seller 30
seller of low quality car archives "information rent" of 30
non-overlapping prices for high/low quality car:
low /high quality undetectable for buyer
buyer simply assumes with 50% probability if high/low quality
setup:
high quality car1 (buyer value 100, seller value 70)
low quality car2 (buyer value 50, seller value 20)
price 20:
payoff buyer 15, payoff seller 0
only low Q cars traded; 50% no trade happens
price 70:
payoff buyer 5, payoff seller 25
seller of low quality car archives "information rent" of 50
unravelling markets:
insurance:
for high risk people (conditions, dangerous lifestyle) very valuable
if single price set, unattractive to low risk people
but then prices for remaining high risk people go up
moral hazard problem (cost of dangerous activities sink)
adverse selection problem (high risk behaves differently as low risk)
=> mandate insurance
borrower rates:
good borrowers will reject bad rates
banks left only with bad borrowers
screening:
selling software:
frequent users to which program is essential
infrequent users to which program is nonessential
frequent will disguise as infrequent
if high price, then infrequent will leave
if low price, then frequent will gain information rent
after sales service:
service more valuable to frequent users than to infrequent
offer high price & after sell service -> frequent have to choose this
offer low price & no after sell service -> infrequent will choose this
but distortion that infrequent users do not get service anymore
even though it might still be efficient to provide
hire for indifferent employees:
want to hire employees but can not differentiate ability
if high wage, then low quality get too much information rent
if low + high wage, then low quality will pretend to be high
assume high types work more efficiently than low type
offer high wage + excessive hours, low wage + normal hours
low types pick normal hours (as rest is not doable)
high types pick excessive hours (to get good wage)
other screening examples:
phone company tries to sell expensive abo
airline makes first class nicer, second class worse
chip producer sabotages chip to sell functioning version for higher price
signalling:
excessive education:
as low-types much harder to finish
invest in education even if non-beneficial to employer
as it signals high-type person
waiving access to bankruptcy:
costly for anyone, but much more to low-type company
hence good signal; without it loans might not be granted
but in many cases law prevents waiving access
distortion:
prenuptial agreement:
both spouses have considerable assets
in case of divorce, lawyers could be costly
hence create contract to avoid dispute
but suggesting the contract raises doubts
tenant contracts:
include clauses that are invalid
but if spoken about, then contract will not happen
"cover all your bases":
the more the contract covers the easier to handle in court
includes already enforced legal doctrines / implicit claims
like copyright, implicit trust assumptions
representation:
assert something to be true in the moment
to enforce, have to show it was untrue in the moment
useful if sometimes fact unknown; allocates risk to claimer
warranties:
give concrete warranty to outcome or effort
easier enforceable in front of court