value of a matrix game

2.3k Views Asked by At

Suppose I have a matrix

$$ \begin{bmatrix} 1&4&2\\ 3&2&1 \end{bmatrix} $$

How do I find the minimax value of the matrix?

( It will be considered as a matrix of a matrix game where Player I chooses a row and simultaneously Player II chooses a column. The matrix entry of the jointly selected row and column represents as usual the winnings of the row chooser and the loss of the column chooser.)

It would be better if some one can explain it by solving with linear programming techniques.

1

There are 1 best solutions below

3
On

First eliminate the second column, because the column player can always do strictly better by choosing the third column instead: $$\require{enclose} \begin{bmatrix} 1&\enclose{verticalstrike}4&2\\ 3&\enclose{verticalstrike}2&1 \end{bmatrix}$$ This reduces the game to a $2\times2$ matrix: \begin{bmatrix} 1&2\\ 3&1 \end{bmatrix} You can solve this using linear programming, but that would be more laborious in this case, and you haven't explained what you're having trouble with. Instead, suppose the row player chooses the first row with probability $p$ and that the column player chooses the first column with probability $q$. Then the row player's expected winnings will be $$w = 1pq + 2p(1-q) + 3(1-p)q + 1(1-p)(1-q) = -3pq + p + 2q + 1.$$ Taking partial derivatives, $$\frac{\partial w}{\partial p} = -3q + 1; \quad \frac{\partial w}{\partial q} = -3p + 2.$$ Set these equal to zero to find the optimal strategies.