3
$\begingroup$

Consider a pack of $10$ cards marked $1,2,3,3,4,4,5,6,7,8$ ($3$ and $4$ are repeated). There are two players that chose $3$ cards each (a total of $6$ cards without replacement are drawn). The player with the lowest total wins and the loser pays the winner an amount equal to the smallest card the winner is holding. If the totals are equal there is no winner. So if player $A$ has drawn $2,3$ and 5 and player $B 1,4$ and $7, A$ is the winner and B pays her an amount of 2. Let $Y$ be the amount that $A$ wins or loses by after each turn. Find the distribution of $Y$ .

Continuing from the previous question, the rules are modified a bit. Player $A$ has the right to choose one of the three cards in advance and the other $5$ cards are drawn from the remaining pack. Choosing $1$ is tempting because it maximises the chances of winning but then every time she wins she will only win by 1. She is thinking of choosing card 2 as the chances of winning are still good and the winning amount will be 2 more often than 1. Also the possible losing payments will be a bit lower. Can she do even better? The game is neither fair nor symmetric any more.

I am pretty new to probability and stochastic processes. I came across this problem and am not sure on how to go about it. Any thoughts and hints will be appreciated. Thanks.

Edit: I am trying to write a Matlab code for the question but I am stuck on how to go ahead with the code. From what I can understand, there will be around $4200$ cases to check which cannot be done mathematically.

$\endgroup$
2
  • 2
    $\begingroup$ How far can you get with it? Can you do the first part? $\endgroup$
    – saulspatz
    Commented Feb 28, 2021 at 20:22
  • 1
    $\begingroup$ The rules of the second game make sense only if payoff per game has to be maximized. $\endgroup$
    – user
    Commented Feb 28, 2021 at 20:36

1 Answer 1

1
$\begingroup$

Because the numbers on these cards are rather arbitrary, I believe that it will be very hard to solve this problem by hand. Writing a piece of code to do this job is straightforward if you're used to it. I wrote mine in SageMath, since it has easy tools for combinatorics. This gave the following results:

For the first part of the question: the distribution of $Y$ is of course symmetrical. The chances of winning are as follows: $P(Y=0)=0.0628$, $P(Y=1)= 0.2259$, $P(Y=2)= 0.1329$, $P(Y=3)= 0.0985$, $P(Y=4)= 0.0111$.

For the second part, the results are more interesting. Since after A has picked his card, no more 'strategy' is left for either player, it suffices to calculate the expected outcome of the game conditional on A's pick (call it $X$). With very similar code, I found the following values: \begin{align} E(Y|X=1)&=-0.01389\\ E(Y|X=2)&=0.2069\\ E(Y|X=3)&=0.0888\\ E(Y|X=4)&=-0.2931\\ E(Y|X=5)&=-0.6333\\ E(Y|X=6)&=-0.9208\\ E(Y|X=7)&=-1.328\\ E(Y|X=8)&=-1.549\\ \end{align}

This means that your intuition was right: picking 2 is the best choice! If you pick 1, your chance of winning is high, but if you lose, it will mostly be by -2. When you pick 2, you expect to win often by 2 and by 1, giving a higher sum on average.


At request: here is the code I used for the first part. The second part is very similar.

cards = [1,2,3,3,4,4,5,6,7,8]; n = len(cards)
distr = {x:0 for x in [-4..4]} #The distribution of the payoffs

for Ci1 in Combinations(n,3):
    C1 = [cards[x] for x in Ci1]
    leftOver = [cards[x] for x in range(n) if x not in Ci1]
    for Ci2 in Combinations(n-3,3):
        C2 = [leftOver[x] for x in Ci2]
        
        if sum(C1)>sum(C2):
            distr[-min(C2)] += 1
        elif sum(C1)<sum(C2):
            distr[min(C1)] += 1
        else:
            distr[0] += 1
$\endgroup$
1
  • $\begingroup$ thanks for your help. Can you edit your answer and add your SageMath code as well? I am writing the code in Matlab and am stuck at a couple of places. $\endgroup$ Commented Mar 5, 2021 at 16:03

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .