Given a game matrix for the penalty shot game:
(1/2,-1/2) (-1,1)
(-1,1) (1/3,-1/3)
What is the minimax strategy and expected value for this game?
I calculated the minimax strategy to be -4 for both the shooter and goalie. However, I'm not sure if I did the calculation right. Could anyone shed some light on this. Thanks
Suppose the row player chooses top with probability $p$ and bottom with probability $1-p$.
If the column player chooes left, the row player's expected payoff is $$\frac{1}{2}p-(1-p)\cdot 1.$$ If the column player chooses right, the row player's expected payoff is $$-p\cdot1+\frac{1}{3}(1-p).$$
The minimax strategy is the $p$ that causes these two payoffs to be equal. $$\frac{1}{2}p-(1-p)=-p+\frac{1}{3}(1-p),$$ so $p=8/17$ is the minimax strategy.
The value is found by substituting this value of $p$ into the payoffs from above so the value is $-5/17$.
You can read a summary of minimax solutions here: http://www.mit.edu/~jcrandal/16.499/GameTheoryBasics.pdf.
Edit: fixed mistake in the algebra spotted by memo.