jamesmoreno
New Member
- Joined
- Oct 8, 2021
- Messages
- 7
Thanks for your reply. I know in that case of coin toss, it's independent, and you can encounter 30 losses in a row or more, even though in history it never happen.If the events are independent (like tossing a coin, rolling a die, or winning a lottery) the history does not predict the future.
A | B | C | D | E | F | |||
---|---|---|---|---|---|---|---|---|
1 | p | 80% | ||||||
2 | ||||||||
3 | Previous | |||||||
4 | losses | Expected | Actual | |||||
5 | 0 | 80.0% | ??? | |||||
6 | 1 | 16.0% | 80.0% | 487 | 80.9% | |||
7 | 2 | 3.2% | 16.0% | 89 | 14.8% | |||
8 | 3 | 0.6% | 3.2% | 21 | 3.5% | |||
9 | 4 | 0.1% | 0.6% | 3 | 0.5% | |||
10 | 5 | 0.0% | 0.1% | 2 | 0.3% | |||
11 | 6 | 0.0% | 0.0% | 0 | 0.0% | |||
12 | 7 | 0.0% | 0.0% | 0 | 0.0% | |||
13 | 8 | 0.0% | 0.0% | 0 | 0.0% | |||
14 | 9 | 0.0% | ||||||
15 | 10 | 0.0% | ||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D6:D13 | D6 | =B6/SUM(B$6:B$13) |
F6:F13 | F6 | =E6/SUM(E$6:E$13) |
B5 | B5 | =p |
B6:B15 | B6 | =p*(1-p)^A6 |
Named Ranges | ||
---|---|---|
Name | Refers To | Cells |
p | =Sheet1!$B$1 | B5:B15 |
Hey, thanks for your reply! I left out the count for zero previous losses, because I have them in a separate table. I have one table for Loss in a row frequency, and another for Wins in a row frequency, I updated the spreadsheet image.Welcome to the Forum!
You've left out the count for zero previous losses.
If these are independent trials with equal probability of success, what you've posted (so far) is consistent with the distribution you'd expect for individual success rate ~80%
A B C D E F 1 p 80% 2 3 Previous 4 losses Expected Actual 5 0 80.0% ??? 6 1 16.0% 80.0% 487 80.9% 7 2 3.2% 16.0% 89 14.8% 8 3 0.6% 3.2% 21 3.5% 9 4 0.1% 0.6% 3 0.5% 10 5 0.0% 0.1% 2 0.3% 11 6 0.0% 0.0% 0 0.0% 12 7 0.0% 0.0% 0 0.0% 13 8 0.0% 0.0% 0 0.0% 14 9 0.0% 15 10 0.0% Sheet1
Cell Formulas Range Formula D6:D13 D6 =B6/SUM(B$6:B$13) F6:F13 F6 =E6/SUM(E$6:E$13) B5 B5 =p B6:B15 B6 =p*(1-p)^A6
Named Ranges Name Refers To Cells p =Sheet1!$B$1 B5:B15
Hi Stephen, thanks for your reply!If the distribution in #5 is correct (i.e. if p is 80%, and trials are independent) then in an unbounded sample space, you expect
- 80% of wins to follow an immediately previous win
- 16% of wins to follow a single loss
- 3.2% of wins to follow a run of two losses
etc.
I suspect you're still looking for an answer to your original question, which might be phrased: I've experienced N losses in a row. What is my chance of a win next time?
The answer to that question is p, regardless of the value of N (as @shg said in post #2).
Yes, I was looking for a answer for this I've experienced N losses in a row. What is my chance of a win next time? and also reverse it, I've experienced N winners in a row. What is my chance of a loss next time?If the distribution in #5 is correct (i.e. if p is 80%, and trials are independent) then in an unbounded sample space, you expect
- 80% of wins to follow an immediately previous win
- 16% of wins to follow a single loss
- 3.2% of wins to follow a run of two losses
etc.
I suspect you're still looking for an answer to your original question, which might be phrased: I've experienced N losses in a row. What is my chance of a win next time?
The answer to that question is p, regardless of the value of N (as @shg said in post #2).