NucleolusCapita {GameTheory} | R Documentation |
Per Capita Nucleolus
Description
This function computes the per capita nucleolus solution of a gains game with a maximum of 4 agents.
Usage
NucleolusCapita(x, type = "Gains")
Arguments
x |
Object of class Game |
type |
Specify if the game refers to Gains or Cost |
Details
The per capita nucleolus represents a measure of dissatisfaction per capita of such a coalition. It is also an individually rational distribution of the worth of the grand coalition in which the maximum per capita dissatisfaction is minimized. Formally, is defined like the nucleolus but taking into the account the per capita excess.
Value
The command returns a table with the following elements:
v(S) |
Individual value of player i |
x(S) |
Nucleolus solution of the player i |
Ei |
Excess of the player i |
Author(s)
Sebastian Cano-Berlanga <cano.berlanga@gmail.com>
References
Lemaire J (1991). "Cooperative game theory and its insurance applications." Astin Bulletin, 21(01), 17–40.
Schmeidler D (1969). "The Nucleolus of a characteristic function game." SIAM Journal of Applied Mathematics, 17, pp.1163–1170.
Examples
## DATA FROM LEMAIRE (1991)
# Begin defining the game
COALITIONS <- c(46125,17437.5,5812.5,69187.5,53812.5,30750,90000)
LEMAIRE<-DefineGame(3,COALITIONS)
# End defining the game
LEMAIRENUCLEOLUS<-NucleolusCapita(LEMAIRE)
summary(LEMAIRENUCLEOLUS)