DT {ClaimsProblems} | R Documentation |
Dominguez-Thomson rule
Description
This function returns the awards vector assigned by the Dominguez-Thomson rule (DT) to a claims problem.
Usage
DT(E, d, name = FALSE)
Arguments
E |
The endowment. |
d |
The vector of claims. |
name |
A logical value. |
Details
Let be the endowment to be divided and
the vector of claims
with
and such that
the sum of claims exceeds the endowment.
The truncated claim of claimant in
is the minimum of the claim and the endowment.
Let be the vector of truncated claims
and
The DT rule is defined recursively such that, in each step, each claimant receives the -th part of the truncated claim.
Let . For each
define:
In step 1, the endowment is E and the claims vector is d.
For , the endowment is the remainder once all the claimants have received the amount of the previous steps and the new vector of claims is readjusted accordingly.
Observe that neither the endowment nor each agent's claim ever increases from one step to the next.
This recursive process exhausts
in the limit.
For each the Dominguez-Thomson rule assigns the awards vector:
Value
The awards vector selected by the DT rule. If name = TRUE, the name of the function (DT) as a character string.
References
Domínguez, D. and Thomson, W. (2006). A new solution to the problem of adjudicating conflicting claims. Economic Theory, 28(2), 283-307.
Thomson, W. (2019). How to divide when there isn't enough. From Aristotle, the Talmud, and Maimonides to the axiomatics of resource allocation. Cambridge University Press.
See Also
Examples
E=10
d=c(2,4,7,8)
DT(E,d)