Inspired by a Radiolab postcast: what ways are there to compute the probability of observing 7 heads (or 7 tails) in a row when flipping a coin 100 times?

link|improve this question
This is probably not related to development. – Robert Koritnik Jul 6 '09 at 8:17
feedback

closed as off topic by Mitch Wheat, Neil Butterworth, Cameron MacFarland, Emil H, MSalters Jul 6 '09 at 8:31

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

Each time you start a sequence of 7, there is a 1/(2^7) = 1 in 128 probability that it will be your desired sequence (no matter if its 7 heads/7 tails/something else), and thus a 127 in 128 probability that you will not.

In 100 flips, you can start this sequence 93 times, and in order NOT to hit at least one you need to fail all 93: (127/128)^93 = 48%.

Thus, chance of actually hitting is 100 - 48 = 52%.

link|improve this answer
Shouldn't it be 1/(2^7)*2 if I don't mind if it's heads or tails? Btw, in the meantime I've found this blog post discussing this in more detail: leancrew.com/all-this/2009/06/stochasticity – e1i45 Jul 6 '09 at 9:54
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.