Could someone explain if and why the following random number function works?
I have never quite been able to understand it. I ask the question on SO hoping to find a more "human" explanation that could be understood by me.

|
3
|
Could someone explain if and why the following random number function works? I have never quite been able to understand it. I ask the question on SO hoping to find a more "human" explanation that could be understood by me.
|
||||||||||||||
|
|
|
|
||||||
|
|
|
From the outside of any given random number function, it's impossible to tell whether or not the numbers coming out of it are in fact random or not. Seeing the stream of 4s come out would indicate that it's possibly not random, but alternatively, it could be a good time to get a lotto ticket (or a bad one, you can't tell). Looking at the function's internals you can tell that it's not using a random source to produce its values, but without seeing that you'd never know for sure. This is because it's perfectly legitimate for a random source to repeat. Lots of people have the funny concept the following are not random:
Sure, it's statistically unlikely that a random number generator will emit those patterns, but if it does, it's not a sign of not being random. At the basic level, all sequences can be represented with bit patterns, 1s and 0s, and there are only so many combinations of that.
now the following sequences of length 2 are fully legitimate random sequences
And as a result, so is
and
A random number generator can easily produce these sequences without failing to be random. Sure, the longer the run is of bits it emits the more likely they are to change, and the longer a sequence is the less likely it is to be emitted by a random number generator, but that won't stop it from generating it. I'll put it like this: There are billions of people on the earth. If you go out today and buy a lotto ticket, the chance of you winning is heavily against you. But somebody wins, every day. Some people win more than once. |
||||||||||||
|
|
|
The comment implies that who ever wrote it just rolled dice to get the number and is having it return the results of a dice roll. While the results of the dice roll are going to be truly random as opposed to pseudorandom, it misses the spirit of what a random number function is. Thus, it is a joke. |
|||
|
|
|
|
"I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question." -- Charles Babbage |
||||||
|
|
|
See "What Colour are your bits?". Randomness is not a property of a number, but of the process that produces the number. |
|||
|
|
|
I think you have to be really pedantic on this one, part of its flavor. The function name "getRandomNumber()" basically means "Get a number that is random". Here, the number "4" was arrived at randomly, through a dice roll. Thus, 4 IS a random number. This function works PERFECTLY. It does exactly what is asked for, a random number. This is a classic case of "exactly what you asked for, but not what you wanted". |
||||
|
|
|
The programmer misunderstood the requirement 'return a random number'. While the number was random at design-time it has been hard-coded and so it will always return the same number. The requirement most certainly meant that the function should return a different number each time at runtime. Basically, the programmer screwed up in a funny way. I guess you could clarify the requirement 'return a random number' with 'at runtime' and maybe the programmer will get the function right. I doubt it though. I don't think "it works". |
|||
|
|
|
It works perfectly. With the caveat that every time the function is called, the programmer needs to roll the dice again, rewrite the function, and recompile the program. I assume that the number of dice and/or the probability distribution of the function are documented somewhere. Or not. |
|||
|
|
|
|
Technically, this function generates a random number sequence of just one number. More useful functions would generate longer sequences. Even more useful functions would generate different sequences when called multiple times. However, it could be argued that this function produces a "better" random number than more useful functions since, if the comment is to be believed, the sequence was generated by a universally acknowledged randomization procedure: a die roll. Most "random number" generators are actually deterministic algorithms that are difficult to predict if you don't have access to some set of inputs. Traditionally, the needed input is called a seed and is a number a program provides to a random number generator. In turn, the seed is often generated by using the computer's internal clock so that each instance of the program will provide different results. But the sequences generated, while difficult to predict, are not random in the sense of non-deterministic. In fact, the deterministic nature of these sequences is the basis for many encryption techniques. A truly random sequence would be both difficult to predict and non-deterministic (and meet certain statistical tests). Die rolls (as in the cartoon) are a good source for random sequences. But for most applications, the cost of generating a truly random sequence far outweighs the benefits compared to pseudo-random sequences. |
||
|
|
|
|
Snippet seen in a project I previously worked:
Unfortunately, it wasn't a lottery app else I'd be a millionaire by now. |
||||||
|
|
|
Thanks for re-opening the question ;) I don't know why Preets thinks the function "works", and what is meant by "working". A Random Number Generator should generate ...uhm... random numbers. Throw of dice can be seen as random number generation, as the resulting SEQUENCE of numbers appears to be random. However, as has been pointed out by others, a single NUMBER cannot be "random". The joke is that you take a random number generator, take one value of it, and claim that repeating that same result is still a random generator. The function in the cartoon "generates" the same number over and over, is therefore a predictable sequence, and thus not random. |
|||
|
|