I want to simulate N-dimensional biased die?
def roll(N,bias):
'''this function rolls N dimensional die with biasing provided'''
# do something
return result
>> N=6
>> bias=( 0.20,0.20,0.15,0.15,0.14,0.16,)
>> roll(N,bias)
2
|
2
|
I want to simulate N-dimensional biased die?
|
||||||||
|
|
|
A little bit of math here. A regular die will give each number 1-6 with equal probability, namely This is equal to choosing a number in You are requesting a different distribution, which is biased.
The easiest way to achieve this is to divide the section If you take a look at the wikipedia entry, you will see that in this case, the cumulative probability function will not be composed of 6 equal-length parts but rather of 6 parts which differ in length according to the bias you gave them. Same goes for the mass distribution. Back to the question, depending on the language you are using, just translate this back to your die roll. In Python, here is a very sketchy, albeit working, example:
|
||||||
|
|
|
See the recipe for Walker's alias method for random objects with different probablities.
cheers |
||||
|
|
|
The bias will be proportional.
Could use integers too (better):
|
|||
|
|
|
More language agnostic, but you could use a lookup table. Use a random number in the range 0-1 and lookup the value in a table:
|
||
|