I draw $8$ cards randomly from a shuffled deck without replacement. What is the expected value of the sum of the largest $3$ cards? The ace is given a value of 1 and the jack, queen and king are all given a value of $10$. I can generate a simulation answer but that is all. How can this be done, I am stuck?
2026-04-12 09:31:49.1775986309
$8$ cards are drawn from a deck of cards without replacement
363 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
For each of the possible values for the sum, $S$, of the three highest cards -- integers on $[6,30]$ -- figure out the number of combinations of eight-card hands that would give the three highest cards that sum.
For $S=30$, we can have anywhere from three to eight $10$s, so we consider those separately:
$$P(S=30, 10, 10, 10) = \frac{{16 \choose 3}{36 \choose 5} + {16 \choose 4}{36 \choose 4} + {16 \choose 5}{36 \choose 3} + {16 \choose 6}{36 \choose 2} + {16 \choose 7}{36 \choose 1} + {16 \choose 8}{36 \choose 0}}{{52 \choose 8}}.$$
For something a little more complicated, you'll need to add up more combinations. For $S=20$, for example, there are twelve possible triples for the three highest cards:
$$(7, 7, 6), \\ (8, 8, 4), (8, 7, 5), (8, 6, 6), \\ (9, 9, 2), (9, 8, 3), (9, 7, 4), (9, 6, 5), \\ (10, 8, 2), (10, 7, 3), (10, 6, 4), (10, 5, 5).$$
Let's calculate $P(S=20, 9, 8, 3).$ We draw one $9$: ${4 \choose 1}$. We draw one $8$: also ${4 \choose 1}.$ Then there needs to be at least one $3$ (but due to the constraints on the number of $2$s and $3$s, there can't be less than two!):
$$P(S=20, 9, 8, 3) = \frac{{4 \choose 1}{4 \choose 1}\left[{4 \choose 4}{4 \choose 2} + {4 \choose 3}{4 \choose 3} + {4 \choose 2}{4 \choose 4}\right]}{{52 \choose 8}}.$$
(Note that there are little subtleties like the fact that $(10, 9, 1)$ isn't possible. If you draw a $10$ and a $9$, at least two of the remaining six cards must be something higher than an ace.)
Once you have the probability of getting each sum individually, then getting the expected value is easy. Counting up the number of combinations of cards for each sum is the laborious part.