simplifiedModiclus: Compute simplified modiclus

Description Usage Arguments Value Author(s) References Examples

View source: R/NucleolusDerivatives.R

Description

Computes the simplified modiclus of a TU game with a non-empty imputation set and n players. Note that the simplified modiclus is a member of the set of preimputations.

Usage

1

Arguments

v

Numeric vector of length 2^n - 1 representing the values of the coalitions of a TU game with n players

Value

Numeric vector of length n representing the simplified modiclus of the specified TU game.

Author(s)

Jochen Staudacher jochen.staudacher@hs-kempten.de

Johannes Anwander anwander.johannes@gmail.com

References

Tarashnina S. (2011) "The simplified modified nucleolus of a cooperative TU-game", TOP 19(1), pp. 150–166

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(CoopGame)
simplifiedModiclus(c(0, 0, 0, 1, 1, 0, 1))


#Second example:
#Estate division problem from Babylonian Talmud with E=100,
#see e.g. seminal paper by Aumann & Maschler from 1985 on
#'Game Theoretic Analysis of a Bankruptcy Problem from the Talmud'
library(CoopGame)
v<-bankruptcyGameVector(n=3,d=c(100,200,300),E=100)
simplifiedModiclus(v)
#[1]  33.33333 33.33333 33.33333

CoopGame documentation built on Aug. 24, 2021, 1:07 a.m.