- what is simple solution
- what is effective solution to less minimum memory and(or) cpu speed?
|
60
|
|||||||||||||||||||||
|
|
|
EDIT: Wrong, doesn't produce a uniform distribution. EDIT2: Double-wrong, won't produce 1 (now fixed) |
||||||||||||||
|
|
|
Are homework problems allowed here? This function does crude "base 5" math to generate a number between 0 and 6.
|
||||
|
|
|
There is no (exactly correct) solution which will run in a constant amount of time, since 1/7 is an infinite decimal in base 5. One simple solution would be to use rejection sampling, e.g.:
This has an expected runtime of 25/21 = 1.19 iterations of the loop, but there is an infinitesimally small probability of looping forever. |
||||||||||||||||||||
|
|
|
|
||
|
|
|
|
||||||||||||||||
|
|
|
Edit: That doesn't quite work. It's off by about 2 parts in 1000. The buckets get:
By switching to a sum of
seems to gain an order of magnitude for every 2 added |
||||||||||||||||
|
|
|
|
||
|
|
|
solution in php
|
||||
|
|
|
The following produces a uniform distribution on {1, 2, 3, 4, 5, 6, 7} using a random number generator producing a uniform distribution on {1, 2, 3, 4, 5}. The code is messy, but the logic is clear.
|
||
|
|
|
For number 1, can someone explain what's wrong with this?
} |
||||
|
|
|
Assuming that rand(n) here means "random integer in a uniform distribution from 0 to n-1", here's a code sample using Python's randint, which has that effect. It uses only randint(5), and constants, to produce the effect of randint(7). A little silly, actually
|
||
|
|
|
|
(I have stolen Adam Rosenfeld's answer and made it run about 7% faster.) Assume that rand5() returns one of {0,1,2,3,4} with equal distribution and the goal is return {0,1,2,3,4,5,6} with equal distribution.
We're keeping track of the largest value that the loop can make in the variable Edit: Expect number of times to call rand5() is x in this equation:
|
||||||
|
|
|
A constant time solution that produces approximately uniform distribution. Edit: My bad, I miscalculated, but instead of pulling it I'll leave it in case someone finds it useful/entertaining. It does actually work after all... :)
|
||||||
|
|
|
|
||||
|
|
|
|
||||
|
|
|
I feel stupid in front of all this complicated answsers. Why can't it be :
? |
||||||||||||
|
|
|
..although that may possibly be considered cheating.. |
||
|
|
|
|
I think this would be uniformly distributed?
Thoughts? I would be curious what Adam R. has to say since his is the highest rated answer and has responded to a number of posts already. Thanks. |
||||||||
|
|
|
I have played around and I write "testing environment" for this Rand(7) algorithm. For example if you want to try what distribution gives your algorithm or how much iterations takes to generate all distinct random values (for Rand(7) 1-7), you can use it. My core algorithm is this:
Well is no less uniformly distributed then Adam Rosenfield's one. (which I included in my snippet code)
This "testing environment" can take any Rand(n) algorithm and test and evaluate it (distribution and speed). Just put your code into the "Rand7WithRand5" method and run the snippet. Few observations:
|
||||
|
|
|
Here is a working Python implementation of Adam's answer.
I like to throw algorithms I'm looking at into Python so I can play around with them, thought I'd post it here in the hopes that it is useful to someone out there, not that it took long to throw together. |
||||
|
|
|
By using a rolling total, you can both
Both these problems are an issue with the simplistic
And this output shows the results:
A simplistic
And, on the advice of Nixuz, I've cleaned the script up so you can just extract and use the
|
||||||||||||
|
|
|
This is equivalent to Adam Rosenfield's solution, but may be a bit more clear for some readers. It assumes rand5() is a function that returns a statistically random integer in the range 1 through 5 inclusive.
How does it work? Think of it like this: imagine printing out this double-dimension array on paper, tacking it up to a dart board and randomly throwing darts at it. If you hit a non-zero value, it's a statistically random value between 1 and 7, since there are an equal number of non-zero values to choose from. If you hit a zero, just keep throwing the dart until you hit a non-zero. That's what this code is doing: the i and j indexes randomly select a location on the dart board, and if we don't get a good result, we keep throwing darts. Like Adam said, this can run forever in the worst case, but statistically the worst case never happens. :) |
||
|
|
If we consider the additional constraint of trying to give the most efficient answer i.e one that given an input stream, I, of uniformly distributed integers of length m from 1-5 outputs a stream O, of uniformly distributed integers from 1-7 of the longest length relative to m, say L(m). The simplest way to analyse this is to treat the streams I and O as 5-ary and 7-ary numbers respectively. This is achieved by the main answer's idea of taking the stream a1, a2, a3,... -> a1+5*a2+5^2*a3+.. and similarly for stream O. Then if we take a section of the input stream of length m choose n s.t. 5^m-7^n=c where c>0 and is as small as possible. Then there is a uniform map from the input stream of length m to integers from 1 to 5^m and another uniform map from integers from 1 to 7^n to the output stream of length n where we may have to lose a few cases from the input stream when the mapped integer exceeds 7^n. So this gives a value for L(m) of around m (log5/log7) which is approximately .82m. The difficulty with the above analysis is the equation 5^m-7^n=c which is not easy to solve exactly and the case where the uniform value from 1 to 5^m exceeds 7^n and we lose efficiency. The question is how close to the best possible value of m (log5/log7) can be attain. For example when this number approaches close to an integer can we find a way to achieve this exact integral number of output values? If 5^m-7^n=c then from the input stream we effectively generate a uniform random number from 0 to (5^m)-1 and don't use any values higher than 7^n. However these values can be rescued and used again. They effectively generate a uniform sequence of numbers from 1 to 5^m-7^n. So we can then try to use these and convert them into 7-ary numbers so that we can create more output values. If we let T7(X) to be the average length of the output sequence of random(1-7) integers derived from a uniform input of size X, and assuming that 5^m=7^n0+7^n1+7^n2+...+7^nr+s, s<7. Then T7(5^m)=n0x7^n0/5^m + ((5^m-7^n0)/5^m) T7(5^m-7^n0) since we have a length no sequence with probability 7^n0/5^m with a residual of length 5^m-7^n0 with probability (5^m-7^n0)/5^m). If we just keep substituting we obtain: T7(5^m) = n0x7^n0/5^m + n1x7^n1/5^m + ... + nrx7^nr/5^m = (n0x7^n0 + n1x7^n1 + ... + nrx7^nr)/5^m Hence L(m)=T7(5^m)=(n0x7^n0 + n1x7^n1 + ... + nrx7^nr)/(7^n0+7^n1+7^n2+...+7^nr+s) Another way of putting this is: If 5^m has 7-ary representation a0+a1*7 + a2*7^2 + a3*7^3+...+ar*7^r Then L(m) = (a1*7 + 2a2*7^2 + 3a3*7^3+...+rar*7^r)/(a0+a1*7 + a2*7^2 + a3*7^3+...+ar*7^r) The best possible case is my original one above where 5^m=7^n+s, where s<7. Then T7(5^m) = nx(7^n)/(7^n+s) = n+o(1) = m (Log5/Log7)+o(1) as before. The worst case is when we can only find k and s.t 5^m = kx7+s. Then T7(5^m) = 1x(k.7)/(k.7+s) = 1+o(1). Other cases are somewhere inbetween. It would be interesting to see how well we can do for very large m, i.e. how good can we get the error term: T7(5^m) = m (Log5/Log7)+e(m). It seems impossible to achieve e(m) = o(1) in general but hopefully we can prove e(m)=o(m). The whole thing then rests on the distribution of the 7-ary digits of 5^m for various values of m. I'm sure there is a lot of theory out there that covers this I may have a look and report back at some point. |
|||
|
|
|
|
This answer is more an experiment in obtaining the most entropy possible from the Rand5 function. t is therefore somewhat unclear and almost certainly a lot slower than other implementations. Assuming the uniform distribution from 0-4 and resulting uniform distribution from 0-6:
The number of bits added to the buffer per call to Rand5 is currently 4/5 * 2 so 1.6. If the 1/5 probability value is included that increases by 0.05 so 1.65 but see the comment in the code where I have had to disable this. Bits consumed by call to Rand7 = 3 + 1/8 * (3 + 1/8 * (3 + 1/8 * (... By extracting information from the sevens I reclaim 1/8*1/7 bits per call so about 0.018 This gives a net consumption 3.4 bits per call which means the ratio is 2.125 calls to Rand5 for every Rand7. The optimum should be 2.1. I would imagine this approach is significantly slower than many of the other ones here unless the cost of the call to Rand5 is extremely expensive (say calling out to some external source of entropy). |
||||||||
|
|
|
I'd like to add another answer, in addition to my first answer. This answer attempts to minimize the number of calls to The entropy of a random variable is a well-defined quantity. For a random variable which takes on N states with equal probabilities (a uniform distribution), the entropy is log2 N. Thus, Side notes: all logarithms in this answer will be base 2 unless specified otherwise. So how do we do it? We generate an infinitely precise random real number between 0 and 1 (pretend for the moment that we could actually compute and store such an infinitely precise number -- we'll fix this later). We can generate such a number by generating its digits in base 5: we pick the random number 0. Ok, so we've picked a random real number between 0 and 1. I now claim that such a random number is uniformly distributed. Intuitively, this is easy to understand, since each digit was picked uniformly, and the number is infinitely precise. However, a formal proof of this is somewhat more involved, since now we're dealing with a continuous distribution instead of a discrete distribution, so we need to prove that the probability that our number lies in an interval [ Now that we have a random real number selected uniformly from the range [0, 1], we need to convert it to a series of uniformly random numbers in the range [0, 6] to generate the output of Taking the example from earlier, if our Ok, so we have the main idea, but we have two problems left: we can't actually compute or store an infinitely precise real number, so how do we deal with only a finite portion of it? Secondly, how do we actually convert it to base 7? One way we can convert a number between 0 and 1 to base 7 is as follows:
To deal with the problem of infinite precision, we compute a partial result, and we also store an upper bound on what the result could be. That is, suppose we've called So, keeping track of the current number so far, and the maximum value it could ever take, we convert both numbers to base 7. If they agree on the first And that's the algorithm -- to generate the next output of
Note that Also note that the numbers here get very big, very fast. Powers of 5 and 7 grow quickly. Hence, performance will start to degrade noticeably after generating lots of random numbers, due to bignum arithmetic. But remember here, my goal was to maximize the usage of random bits, not to maximize performance (although that is a secondary goal). In one run of this, I made 12091 calls to In order to port this code to a language that doesn't have arbitrarily large integers built-in, you'll have to cap the values of |
||||||||||
|
|
|
The premise behind Adam Rosenfield's correct answer is:
When n equals 2, you have 4 throw-away possibilities: y = {22, 23, 24, 25}. If you use n equals 6, you only have 1 throw-away: y = {15625}. 5^6 = 15625
You call rand5 more times. However, you have a much lower chance of getting a throw-away value (or an infinite loop). If there is a way to get no possible throw-away value for y, I haven't found it yet. |
|||
|
|
|
|
Here's my answer:
It's a little more complicated than others, but I believe it minimises the calls to rand5. As with other solutions, there's a small probability that it could loop for a long time. |
||||
|
|
|
There are elegant algorithms cited above, but here's one way to approach it, although it might be roundabout. I am assuming values generated from 0. R2 = random number generator giving values less than 2 (sample space = {0, 1}) In order to generate R8 from R2, you will run R2 thrice, and use the combined result of all 3 runs as a binary number with 3 digits. Here are the range of values when R2 is ran thrice: 0 0 0 --> 0 Now to generate R7 from R8, we simply run R7 again if it returns 7:
The roundabout solution is to generate R2 from R5 (just like we generated R7 from R8), then R8 from R2 and then R7 from R8. |
||
|
|
|
|
Why not do it simple?
The chances of getting 1 and 7 in this solution is lower due to the modulo, however, if you just want a quick and readable solution, this is the way to go. |
||
|
|
