Skip to content
Advertisement

Find the percentage of coin streaks

I’m trying to write a program to find out how often a streak of six heads or a streak of six tails comes up in a randomly generated list of heads and tails of 100 flips and repeat this 10000 times to find percentage of the coin flips contains a streak of six heads or tails in a row.

My code is like this, and it’s some sort of working. **What I wonder is if it’s giving right results: **

JavaScript

Advertisement

Answer

When you are getting a 7th repetition of heads or tails, it should be counted as a streak because the last 6 flips do form streak. By reseting the count after 6 you are underestimating the number of streaks.

From a probability standpoint, the result you are printing is not a measure of “chance” (that would never go above 100%) but is closer to a mathematical expectancy (i.e. sum of expected values multiplied by their respective probability). Your code produces a sampling of actual attempts but the calculations are not meaningful unless they can be compared to proper probability figures.

here’s how I would implement this sampling and express the results:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement