AA: Average-of-awards rule

View source: R/AA.R

AAR Documentation

Average-of-awards rule

Description

This function returns the awards vector assigned by the average-of-awards rule (AA) to a claims problem.

Usage

AA(E, d, name = FALSE)

Arguments

E

The endowment.

d

The vector of claims.

name

A logical value.

Details

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).

Value

The awards vector selected by the AA rule. If name = TRUE, the name of the function (AA) as a character string.

References

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.

See Also

allrules, axioms, CD, coalitionalgame, setofawards, volume.

Examples

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)

ClaimsProblems documentation built on April 4, 2025, 2:21 a.m.