So here is the deal: I want to (for example) generate 4 pseudo-random numbers, that when added together would equal 40. How could this be dome in python? I could generate a random number 1-40, then generate another number between 1 and the remainder,etc, but then the first number would have a greater chance of "grabbing" more.
feedback
|
(I assume you wanted integers since you said "1-40", but this could be easily generalized for floats.) Here's how it works:
| |||||||
feedback
|
|
Here's the standard solution. It's similar to Laurence Gonsalves' answer, but has two advantages over that answer. (1) It's uniform: each combination of 4 positive integers adding up to 40 is equally likely to come up with this scheme, and (2) it's easy to adapt to other totals (7 numbers adding up to 100, etc.):
Sample outputs:
Explanation: there's a one-to-one correspondence between (1) 4-tuples If you want nonnegative integers (i.e., allowing
Graphical illustration of
| |||||||
feedback
|
|
Generate 4 random numbers, compute their sum, divide each one by the sum and multiply by 40. If you want Integers, then this will require a little non-randomness. | |||
|
feedback
|
|
There are only 37^4 = 1,874,161 arrangements of four integers in the range [1,37] (with repeats allowed). Enumerate them, saving and counting the permutations that add up to 40. (This will be a much smaller number, N). Draw uniformly distributed random integers K in the interval [0, N-1] and return the K-th permutation. This can easily be seen to guarantee a uniform distribution over the space of possible outcomes, with each sequence position identically distributed. (Many of the answers I'm seeing will have the final choice biased lower than the first three!) | ||||
|
feedback
|
|
Assuming you want them to be uniformly distributed, and assuming you don't want repeats
| |||||||
feedback
|