I have been given the following matrix to solve using mixed strategies:
$$ \begin{matrix} 1,2 & 0,0 \\ 0,0 & 2,1 \\ \end{matrix} $$
Given that p and q are the respective probabilities of player 1 and 2, the expected payoff of player 1 i have worked out to be:
payoff_1 = pq + 2(1-p)(1-q) where p and q are the respective probabilities of player 1 and 2. After first order conditions i get
3q - 2 = 0
and
3p - 2 = 0
and i know that the answer is p = 1/3 and q = 2/3, so what am i doing wrong?
The expected payoffs for player 1 are
Alternative 1 (first row): $1q+0\cdot (1-q)$
Alternative 2 (second row): $0q+2\cdot (1-q)$
They have to be equal.
$1q+0\cdot (1-q)=0q+2\cdot (1-q)$
$3q=2\Rightarrow q=\frac23$
Similar for player 2
Alternative 1 (first column): $2p+0\cdot (1-p)$
Alternative 2 (second column): $0p+1\cdot (1-p)$
$2p+0\cdot (1-p)=0p+1\cdot (1-p)$
$3p=1\Rightarrow p=\frac13$