Today I wanted to randomly select a number (0 to 9) using a six-faced dice.
Because a single dice roll would not be sufficient (7, 8, 9, 0 would be missed), I determined that more than one dice roll would be necessary:
First roll
1 2 3 4 5 6
+------------
S 1 | 1 2 3 4 5 6
e r 2 | 7 8 9 0 1 2
c o 3 | 3 4 5 6 7 8
o l 4 | 9 0 1 2 3 4
n l 5 | 5 6 7 8 9 0
d 6 | 1 2 3 4 5 6
The first dice roll determines the column, the second dice roll determines the row from which the random number would be taken.
Unfortunately, I encountered the same problem i.e. 7, 8, 9, 0 appear less frequently in the table. The number of dice rolls could be increased further, but the same problem would be encountered.
My question: what is the easiest way to select 1 item from 10 choices if I only have a six-sided dice?