IDSDS {QGameTheory} | R Documentation |
This function applies the IDSDS algorithm to result in the equilibrium strategies based on the rationaility of the players. The input parameters are equal dimensional payoff matrices for the first and the second players.
IDSDS(P1, P2)
P1 |
Payoff matrix to Alice |
P2 |
Payoff matrix to Bob |
A list consisting of the equilibrium strategies based on the rationality of the players by application of the IDSDS algorithm on P1
and P2
.
https://arxiv.org/abs/1512.06808
https://en.wikipedia.org/wiki/Strategic_dominance
init()
Alice <- matrix(c(8, 0, 3, 3, 2, 4, 2, 1, 3), ncol=3, byrow=TRUE)
Bob <- matrix(c(6, 9, 8, 2, 1, 3, 8, 5, 1), ncol=3, byrow=TRUE)
IDSDS(Alice, Bob)