Odds of picking at least one winning horse out of x races

Imagine I’m going to the track. There are going to be ten races today. I’m going to bet on one horse, at random, to Win, for each race.

Because the number of horses in each race will vary, I’m thinking my intuitive approach (explained in a second) may be too simplistic. Imagine that tonight’s card has ten races. I’m shall now list the number of horses each race, and the odds of choosing the winner in THAT race.

Race 1: 8 horses, 12.5%

Race 2: 10 horses, 10%

Race 3: 12 horses, 8.3%

Race 4: 6 horses, 16.67%

Race 5: 7 horses, 14.29%

Race 6: 9 horses, 11.11%

Race 7: 10 horses, 10%

Race 8: 8 horses, 12.5%

Race 9: 12 horses, 8.3%

Race 10: 10 horses, 10%

Intuitively, it seems to me that the solution is to aggregate those percentages and divide by 10, giving me odds of 11.34% that I’ll leave having picked one winner. Or in other words, I’d have to bet on ± 100 races before, statistically speaking, I’d be likely to pick a winner.

But I feel like I’m looking at this too simplistically. The odds may even be incalculable since each race is its own … event (for lack of a better choice of words).

Any maths or statistics Dopers want to take a stab at this?

In problems like this, the easiest approach is to calculate the probability of LOSING ALL the races, then subtract that from 1, giving you the probability of winning at least one race. The probability of losing all the races is just the product of the probability of losing each race. So in this case, the probability of losing them all is

\frac{7}{8} \times \frac{9}{10} \times \frac{11}{12} \times \frac{5}{6} \times \frac{6}{7} \times \frac{8}{9} \times \frac{9}{10} \times \frac{7}{8} \times \frac{11}{12} \times \frac{9}{10} = 0.2978

So the probability of winning at least one is 0.7022.

Your odds of getting at least one win by randomly selecting horses in each race is about 70%. (1.0-odds of picking losers in all races.) The odds of getting at least two winners are more complicated but are no worse than 5.6%.

Whether you can make a profit on this depends on the payouts for each pick, but of course the odds are selected to ensure that the track statistically makes a profit, so random picking of a statistically significant number of races will ensure that you take a loss.

Stranger

A moment’s thought should reveal that this certainly isn’t correct, given that you’re more likely than that to win just in race #1 (or 4, 5, or 8), and you must be more likely to win at least one overall than you are to win any individual race. What you calculated there is a sort of average chance of winning any given race, not the chance of winning one, ever.

Not just “easiest” but the only valid formula

Well, you could approach it in any of several more complicated ways. For example, it is the probability of getting exactly one win, OR getting exactly two wins, OR … OR getting exactly ten wins. The answer will come out the same of course, but the math will be more complicated.

Yeah, if it were the only valid formula, then it’d be impossible to ask questions like “What are the odds of picking at least three winners”. Those questions are usually more difficult to answer, but they can still be answered.

The specific and composite odds for getting at least a specified number of wins are:

Wins
[N]
Probability
of exactly
N wins
Probability
of at least
N wins
1 0.3849 0.7022
2 0.2223 0.3173
3 0.0755 0.0951
4 0.0167 0.0195
5 2.53e-03 2.81e-03
6 2.63e-04 2.82e-04
7 1.87e-05 1.95e-05
8 8.63e-07 8.87e-07
9 2.35e-08 2.38e-08
10 2.87e-10 2.87e-10

The better is actually more likely to get at least two wins from a purely random draw than they are of losing all races (again, assuming uniform odds for each race). Of course, most horses that are likely to win aren’t going to pay anything close to 5:1 so the likelihood of the random draw strategy to net a profit is pretty low unless you engage in some parimutuel fuckery (see The Grifters for an example) to bias the payouts in favor of your picks.

Stranger

I simulated 1000 bettors, 10 races of 10 horses each, a range of probabilities/odds (with two strong favorites at 30% and 20%, etc.), everyone including random-me betting $10/race, and a track take of 15%. This is the kind of thing I do while watching football.

Expected net return per 10-race session: $ -15.5 [only did 100,000 simulations, this would —> -$15 with more]
Standard deviation of net return: $ 122.96
Probability of making a profit: 0.2759

Pretty low, and a lot of times it pays out it’s nominal.

Oops, somehow my bracketed -$15 triggered some Discoursery.

I fixed it. Just like Discourse uses asterisks to mark off italics, it uses dollar signs to mark off \LaTeX (often used for equations and such). You can prevent that from happening by putting a \backslash in front of one or more of the symbols.

Got it, thank you!