CE {ClaimsProblems} | R Documentation |
Constrained egalitarian rule
Description
This function returns the awards vector assigned by the constrained egalitarian rule (CE) rule to a claims problem.
Usage
CE(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.
Assume that the claims are ordered from small to large, .
The constrained egalitarian rule coincides with the constrained equal awards rule (CEA) applied to
the problem
if the endowment is less or equal than the half-sum of the claims
.
Otherwise, any additional unit is assigned to claimant
until she/he receives the minimum
of the claim and half of
. If this minimun is
, she/he stops there. If it is not, the next increment is
divided equally between claimants
and
until claimant
receives
(in this case she drops out) or they reach
.
If claimant
leaves, claimant
receives any aditional increment until she/he reaches
or
. In the case that claimant
and
reach
, any additional unit is divided between claimants
,
, and
until the first one receives
or they reach
, and so on.
Therefore:
If then
where
is chosen so as to achieve balance.
If then the CE rule assigns to claimant
the maximum of two quantities: the half-claim and the minimum of the claim and a value
chosen so as to achieve balance.
Value
The awards vector selected by the CE rule. If name = TRUE, the name of the function (CE) as a character string.
References
Chun, Y., Schummer, J., Thomson, W. (2001). Constrained egalitarianism: a new solution for claims problems. Seoul J. Economics 14, 269–297.
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)
CE(E,d)