How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#?
I'm trying to generate a string of digits that can add together to be N.
|
4
|
|||||
|
|
|
I'm not sure what the statistics are on this but, the issue here is that you don't want to randomly select a number that makes it impossible to sum N with M number of entries either by overshooting or undershooting. Here's how I would do it:
I didn't have a lot of time to test this so apologies if there's a flaw in my logic somewhere. EDIT: I did some testing and everything seems solid. If you want a nice pretty spread it looks like you want something along the lines of |
||||||||
|
|
|
So I have to ask: Is there an actual purpose for this, or is it just an exercise or homework assignment? There is a lot of work going on to prevent "bias". Is this an actual requirement, or will any fairly random solution do? Without knowing the requirements it's really easy to waste a lot of time. If this is a real problem, please explain what the actual requirements are. |
||
|
|
|
|
Backtracking? |
||
|
|
|
|
I thought I'd try a divide and conquer approach. It seems to work pretty well. I'm sure the results aren't truly random due to the constraining elements of the algorithm, but it comes close. Essentially, I split the list in two and the target sum in half and recurse until I get lists of 3 elements or less. Then I use a brute force iteration of random digits until these smaller sums are attained. Here's the code with a sample run below it.
|
||
|
|
|
|
In order to have an answer not biased towards smaller numbers (or any other bias), you would ideally generate all possible sets of numbers that add up to N. After you have all the sets, randomly select one of the sets. After you've selected the winning set, you can randomly shake up the order of the numbers within that set, if needed. |
||
|
|
|
|
After all the discussions here, there's one other way to generate a list that doesn't introduce bias. Yes, it does differ from what the question is asking, but instead of randomly choosing digits, you can randomly increment digits until you reach the sum. Like the following (again untested):
The idea here is you keep a list of references to your number list. Choose a reference at random, and increment the corresponding number. If you can't increment it anymore, remove the reference so you don't choose it next time. Now there's no shuffling business to be done at the end of the day, although arguably this will still produce one of the available sets of answers to the question and it's a question of which one "feels better" or is faster to run. |
||||||||||
|
|
|
If you want an unbiased algorithm then the naive implementation is something like:
This is non-terminating and slow but it is not biased. If you want a unbiased algorithm I'm not convinced the algorithms posted here are unbiased. |
|||
|
|
|
|
I think this is the simplest way to do it, so it may lack some sophistication however it will get you there.
Hope it helps! |
||
|
|
|
|
There is no guarrentee that 30 random numbers from 1-9 would add up to any specific N. What you can find is a list of numbers which will add up to N and are bounded from 1-9 but the number will not be 30 necessarily. I believe the minimum number of numbers you need is 23, being (22*9) + 2. The maximum of course will be 200 (200*1). So the length of the list is somewhere inside [23,200]. The chances that a random list may be length 30 is thus quite low. If all list lengths are obtainable (i think they are) your chances in the long run at about 0.5%. |
||||||||||
|
|
|
This method will return 30 random numbers that add up to an arbitraryN. It is possible do, to have some 0 values. if that is not feasible, just initialize the array all to one's and if the sum is greater to the arbitraryN, set vals[nextIdx] to 1 instead of 0. Hope this helps.
|
||||
|
|
|
JaredPar code likes me but its slow, it's like to throw a coin and hope to get the n value.Nice pieces of codes |
||
|
|
The problem is we want all numbers to be bounded 1-9 and add up to N. So we have to generate each number one by one and determine the real bounds for the next number. This will of course generate statistical bias toward the end of the list, so I recommend shuffling the array once after generating. To determine the next number's bounds, do the following: Upper bound = take the remaining sum minus (the number of elements remaining * min). Lower bound = take the remaining sum minus (the number of elements remaining * max). Something like (untested):
The idea here is as you generate numbers, the range of possible values for the remaining numbers gets smaller, like a limit function zeroing in on a target sum. Sort of. Edit: I had to change the for loop to be 1-based, because we want the number of elements left AFTER generating this one. Edit2: Put it in a method for completeness and changed |
||||||||||
|
|
|
Algorithm:
|
||
|
|
|
If statistical bias from true randomness is acceptable, you can add numbers up to N - [max random number], then select the last number as N - sum(selected so far). |
||
|
|
|
|
My Original Statement: You can only generate 29 random numbers. The 30th number will be defined by the other 29 and the sum. This is statistically important... I wanted to add some clarification after thinking about it and pinging the community... I now believe my original statement to be false. It was too lenient(which lc pointed out). You can't even generate 29 truly random numbers. As you get closer and closer to 30, the final digits aren't random the same way that rnd[1..9] is random. lc tried to mitigate this in order to come up with a solution, but I believe the solution he came up with (and Spencer) answers a very different question. That question is "Of all the sets of 30 digits between 1 and 9 that add up to 200, construct one randomly". What I believe to be the case is that the question as stated is unsolvable which I believe can be proved with the Pigeonhole Principle (also used by Knuth to show that certain "random" shuffles weren't really random), but I haven't done the math. Good talk everyone. |
||||||||||
|
|
|
This program will attempt to give you the answer. But because you are dealing with random numbers, there is the possibility that this will never give you the answer.
|
||||||||||
|