IDSDS: Iterated Deletion of Strictly Dominated Strategies algorithm

Description Usage Arguments Value References Examples

View source: R/IDSDS.R

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

1
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

1
2
3
4
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)

QGameTheory documentation built on July 8, 2020, 7:27 p.m.