Is there an advantage of the player who goes first?

178 Views Asked by At

Define a game of blindfolded cards as a game in which two players $A$ and $B$ take turns to choose a number from a deck of cards $\{1,2,3,\cdots , n\}$ blindfolded such that if $A$ gets a number $\leq a$ wins and $B$ wins if the number he picks is $\leq b$. A win ends the game.

  • If $1\leq a,b\leq n$ is given and $A$ begins the game, then who has a greater chance of winning. If $a=b$, show that $A$ has an advantage.

  • How does $n$ relate to the advantage of the player? For which $a,b$ will there be an advantage for either of $A$ or $B$ or there will be a $50-50$ chance of winning.

I don't really know who will have a greater chance of winning. But I believe that the fact that $A$ begins the game is counts. So if $a<b$, I think $A$ has a lesser chance of winning and vice-versa. Again, I don't get why if $a=b$, then $A$ might have an advantage in the game. After all, both will have a probability of $\frac{a}{n}$ and then, both will have a similar probability I guess. Anyway since $A$ begins the game, perhaps he can win it in the first chance, so that might be called as an advantage, though I believe there's a stronger version to it.

2

There are 2 best solutions below

5
On

Note: in this computation I will assume that the choices are made with replacement, though this is not currently specified in the original problem.

To illustrate the computation, here is how to calculate $A's$ chance when $a=b$.

First, note that this is really just a bet on a biased coin. Since each player wins with probability $p=\frac {a}n$ they are effectively betting on a coin that comes up $H$ with probability $p$.

Let $P_A$ be the probability that $A$ wins (So $B$ wins with probability $1-P_A$). If $A$ wins the first toss the game is over, if $A$ fails on the first try, $A$ effectively moves into the second position. Thus $$P_A=p\times 1 + (1-p)\times(1-P_A)\implies \boxed {P_A=\frac 1{2-p}}$$

Note that this is always $≥\frac 12$ and equal only in the degenerate case $p=0$, so $A$ always has an advantage.

3
On

If cards are drawn with replacement, then A's chance of drawing a winning card in a particular try is $a/n = \alpha$, say, and B's chance is $b/n = \beta$. The probability that A wins after exactly $n$ failures by each player is $(1- \alpha)^n(1 - \beta)^n\alpha$. Hence A's chance overall is $$\sum_{n=0}^{\infty}(1 - \alpha)^n(1 - \beta)^n\alpha = \alpha/(\alpha + \beta - \alpha\beta).$$ Similarly B's chance overall is $(\beta - \alpha\beta)/(\alpha + \beta - \alpha\beta)$. Hence A has an advantage iff $\alpha > \beta - \alpha\beta$, which is equivalent to $n(b - a) < ab$. If $a \ge b$ then A has an advantage for all $n$. If $a < b$ then A has an advantage iff $n < ab/(b - a)$. (If the cards are not replaced it's probably harder.)