We play a game involving two players. Each player calls a number 1 or 2. If the sum of these numbers are odd (i.e. equal to 3), then player 1 gets 3 points and player 2 loses 3 points. If the sum of these numbers are even (equal to 2 or 4), then player 1 loses 2 or 4 points and player 2 wins 2 or 4 points. (If the sum = 4, then they win/lose 4, if sum = 2 they win/lose 2).
Each player has a probability with which they play a 1. Let's call it $p$ for player 1 and $q$ for player 2. The question is: Is there a $p \in [0, 1]$ such that, for all $q \in [0,1]$, the expected value for Player 1 is positive? Conversely, is there a $q \in [0, 1]$ such that, for all $p \in [0,1]$, the expected value for Player 2 is positive?
My work so far:
The expected value for Player 1 can be calculated as follows:
$E_1(V) = 3[p(1-q) + q(1-p)] - 2pq - 4(1-p)(1-q)$
$E_1(V) = 7p + 7q - 12pq - 4$
On the other hand, since Player 1 and Player 2 just trade money, we can say that $E_2(V) = 12pq + 4 - 7p - 7q$
However, I don't know what to do with these equations from here.
Well once you have the expected values, the rest of the calculations are easy. We want to know for what fixed $p, E_1(V) \ge 0$. Solving this inequality gives
$$q(7-12p)+7p-4 \ge 0$$ $$q \ge \frac{4-7p}{7-12p}$$.
Then we want to know when $\frac{4-7p}{7-12p} = 0$. This happens when $p = \frac{4}7$. Similar for the other calculation.