I participate in an online game which makes use of a computer run random number generator to determine the chances of various things happening in the game world.
While the following is somewhat anecdotal I can say I rarely find anyone in-game who has not experienced it. Some few have actually logged numbers and done the math and here is what they found:
Overall, with a statistically large enough sample size, the random number generator does produce results that trend very close to the stated percentage chance advertised (so a 50/50 chance when number crunched with real examples comes out to 49.7/50.3 after 1000 attempts). All well and good and pretty much what we would expect from a random number generator.
However, there are some shockingly unlikely streaks in the datasets collected so far. Certainly one might expect some unlikely runs (say 20 heads in a row on a coin flip) but in 1000 attempts one would not expect to see those 20 in a row appear several times. Some of the data one person (others have done this too and bear out the same results roughly):
—Data—
Marketing missions executed: 1543 (95% courier/5% kill missions)
Number of Kill missions: 79
Number of courier missions: 1464
Percentage of kill missions: 5.12%
Percentage of courier missions: 94.88%
Most anomalous streaks:
-
8 kill missions in a row
Chance: 0.00000000390625%
Frequence: 2x -
5 kill missions in a row
Chance: 0.00003125%
Frequence: 5x -
96 courier missions in a row
Chance: 0.73%
Frequence: 1x
AND
Attempts: 900 (50/50 chance of success)
Successes: 467
Failures: 433
percentages of successes: 51.9%
percentages of failures: 48.1%
Most anomalous streaks:
-
16 failures in a row
Chance: 0.0000439%
Frequence: 3x -
8 failures in a row
Chance: 0.287%
Frequence: 5x -
6 successes in a row
Chance: 1.95%
Frequence: 8x
—End Data—
So, is the above simply to be expected and normal? I might expect to see something like that occasionally but the odds seem distinctly against such streaks occurring repeatedly to the same person (and many others see this too). Is the random number generator glitchy even if overall it provides the percentages it claims to?