herrozerro
First Post
I was actually wondering the math of this as well and I made a simple program in C#. source can be found here.
https://gist.github.com/herrozerro/6ee4f71f437cf201f86c
It should be noted that the Mode could vary wildly, I have had the mode of one die be 1 or as high as 8 in my tests. Here are some of my findings:
1 dice averaged 6.0157 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 45
The median value of rounds are: 4 and the Mode was: { Rounds = 1, Freq = 1681 }
2 dice averaged 8.7963 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 52
The median value of rounds are: 8 and the Mode was: { Rounds = 7, Freq = 754 }
3 dice averaged 10.6625 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 55
The median value of rounds are: 11 and the Mode was: { Rounds = 4, Freq = 631 }
4 dice averaged 11.8739 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 55
The median value of rounds are: 16 and the Mode was: { Rounds = 9, Freq = 739 }
5 dice averaged 12.9392 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 63
The median value of rounds are: 13 and the Mode was: { Rounds = 13, Freq = 599 }
6 dice averaged 13.9056 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 62
The median value of rounds are: 12 and the Mode was: { Rounds = 21, Freq = 238 }
7 dice averaged 14.6642 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 60
The median value of rounds are: 19 and the Mode was: { Rounds = 34, Freq = 26 }
8 dice averaged 15.5141 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 60
The median value of rounds are: 16 and the Mode was: { Rounds = 6, Freq = 207 }
9 dice averaged 16.0385 rounds over 10000 runs.
The shortest set of rounds was: 3 and the most rounds was: 64
The median value of rounds are: 13 and the Mode was: { Rounds = 16, Freq = 559 }
10 dice averaged 16.5726 rounds over 10000 runs.
The shortest set of rounds was: 3 and the most rounds was: 69
The median value of rounds are: 12 and the Mode was: { Rounds = 13, Freq = 679 }
https://gist.github.com/herrozerro/6ee4f71f437cf201f86c
It should be noted that the Mode could vary wildly, I have had the mode of one die be 1 or as high as 8 in my tests. Here are some of my findings:
1 dice averaged 6.0157 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 45
The median value of rounds are: 4 and the Mode was: { Rounds = 1, Freq = 1681 }
2 dice averaged 8.7963 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 52
The median value of rounds are: 8 and the Mode was: { Rounds = 7, Freq = 754 }
3 dice averaged 10.6625 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 55
The median value of rounds are: 11 and the Mode was: { Rounds = 4, Freq = 631 }
4 dice averaged 11.8739 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 55
The median value of rounds are: 16 and the Mode was: { Rounds = 9, Freq = 739 }
5 dice averaged 12.9392 rounds over 10000 runs.
The shortest set of rounds was: 1 and the most rounds was: 63
The median value of rounds are: 13 and the Mode was: { Rounds = 13, Freq = 599 }
6 dice averaged 13.9056 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 62
The median value of rounds are: 12 and the Mode was: { Rounds = 21, Freq = 238 }
7 dice averaged 14.6642 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 60
The median value of rounds are: 19 and the Mode was: { Rounds = 34, Freq = 26 }
8 dice averaged 15.5141 rounds over 10000 runs.
The shortest set of rounds was: 2 and the most rounds was: 60
The median value of rounds are: 16 and the Mode was: { Rounds = 6, Freq = 207 }
9 dice averaged 16.0385 rounds over 10000 runs.
The shortest set of rounds was: 3 and the most rounds was: 64
The median value of rounds are: 13 and the Mode was: { Rounds = 16, Freq = 559 }
10 dice averaged 16.5726 rounds over 10000 runs.
The shortest set of rounds was: 3 and the most rounds was: 69
The median value of rounds are: 12 and the Mode was: { Rounds = 13, Freq = 679 }
Last edited: