I am interested in converting Vegas NCAAFB spreads to win percentages using historical data, and then using said data to look at the probabilities of a collection of teams winning N games (ie, winning no games, 1 game, etc).
In particular,
There are six games.G1…G6.
Game Win %
1 12%
2 89%
3 19%
4 5%
5 50%
6 29%
The odds of winning all six games is 0.290.500.050.190.89*0.12 ~= 0.015%.
The odds of winning no games is similarly (1-0.29) * (1-0.50) * …* (1-0.12) ~= 2.6%
Now how would I find the odds of winning 1, 2, or 3 games? The obvious brute force solution to this is to look at the probability of winning each game times the odds of losing every other game…and repeat this for each game and sum up the probabilities. That’s a lot of work and figured there had to be an easier approach. Thanks
Furthermore, is there a general approach? Suppose I have N events (E1…En) each with probability of occurring (P1…Pn) and they are each independent. What is the probability of some number Y from 0 to N occurring?