AA | R Documentation |
This function returns the awards vector assigned by the average-of-awards rule (AA) to a claims problem.
AA(E, d, name = FALSE)
E |
The endowment. |
d |
The vector of claims. |
name |
A logical value. |
Let N=\{1,\ldots,n\}
be the set of claimants, E\ge 0
the endowment to be divided and d\in \mathbb{R}_+^N
the vector of claims
such that \sum_{i \in N} d_i\ge E
.
A vector x=(x_1,\dots,x_n)
is an awards vector for the claims problem (E,d)
if 0\le x \le d
and satisfies the balance requirement, that is, \sum_{i=1}^{n}x_i=E
.
Let X(E,d)
be the set of awards vectors for (E,d)
.
The average-of-awards rule (AA) assigns to each claims problem (E,d)
the expectation of the uniform distribution defined over the set of awards vectors, that is,
the centroid of X(E,d)
.
Let \mu
be the (n-1)
-dimensional Lebesgue measure and V(E,d)=\mu (X(E,d))
be the
measure (volume) of the set of awards X(E,d)
. The average-of-awards rule assigns to each claims problem (E,d)
the awards vector given by:
\text{AA}(E,d)=\frac{1}{V(E,d)}\int_{X(E,d)} x d\mu.
The average-of-awards rule corresponds to the core-center solution of the associated coalitional (pessimistic) game.
The function AA is programmed with the algorithm of Mirás Calvo et al. (2024b), which is an improved version of the algorithm of Mirás Calvo et al. (2024a).
The awards vector selected by the AA rule. If name = TRUE
, the name of the function (AA) as a character string.
Gonzalez-Díaz, J. and Sánchez-Rodríguez, E. (2007). A natural selection from the core of a TU game: the core-center. International Journal of Game Theory 36(1), 27-46.
Mirás Calvo, M.A., Núñez Lugilde, I., Quinteiro Sandomingo, C., and Sánchez-Rodríguez, E. (2024a). An algorithm to compute the average-of-awards rule for claims problems with an application to
the allocation of CO_2
emissions. Annals of Operations Research 336, 1435-1459.
Mirás Calvo, M.A., Núñez Lugilde, I., Quinteiro Sandomingo, C., and Sánchez-Rodríguez, E. (2024b). On properties of the set of awards vectors for a claims problem. TOP 32, 137-167.
Mirás Calvo, M.A., Quinteiro Sandomingo, C., and Sánchez-Rodríguez, E. (2022). The average-of-awards rule for claims problems. Social Choice and Welfare 59, 863-888.
allrules, axioms, CD, coalitionalgame, setofawards, volume.
E=10
d=c(2,4,7,8)
AA(E,d)
#The average-of-awards rule is self-dual: AA(E,d)=d-AA(D-E,d)
D=sum(d)
d-AA(D-E,d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.