IDSDS {QGameTheory}R Documentation

Iterated Deletion of Strictly Dominated Strategies algorithm

Description

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.

Usage

IDSDS(P1, P2)

Arguments

P1

Payoff matrix to Alice

P2

Payoff matrix to Bob

Value

A list consisting of the equilibrium strategies based on the rationality of the players by application of the IDSDS algorithm on P1 and P2.

References

https://arxiv.org/abs/1512.06808
https://en.wikipedia.org/wiki/Strategic_dominance

Examples

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)


[Package QGameTheory version 0.1.2 Index]