vote up 18 vote down star
4

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.

alt text

flag
7  
In an infinite sequence of random numbers, you will see infinite sequences of the same number. – Lasse V. Karlsen Jan 20 at 17:20
If you rewrote the question you may get people voting to re-open it, but as it is, it looks like a bad question. – Kent Fredric Jan 20 at 17:22
1  
I do not believe a lot of people actually undertand how this work. This question definitely needs to be answered ! – Preets Jan 20 at 17:29
I wonder if all the people who downvoted and closed the question would in fact be able to answer it reasonably. Please reopen (a comment is too short for a full answer) – devio Jan 20 at 17:33
The dice roll was random, therefore 4 is random. QED. Of course, 4 is not random - that's the joke. – Greg Hurlman Jan 20 at 17:35
show 6 more comments

11 Answers

vote up 16 vote down

See "What Colour are your bits?". Randomness is not a property of a number, but of the process that produces the number.

link|flag
The article takes quite a bit until it reaches the "random" part, but it's a great article! – Joachim Sauer Jan 20 at 19:02
vote up 32 vote down

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:

  • 4 4 4 4 4 4 4 4
  • 1 2 3 4 5 6 7 8
  • 8 7 6 5 4 3 2 1
  • 1 3 5 7 9 12 14

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.

0        1

now the following sequences of length 2 are fully legitimate random sequences

00
01 
10 
11

And as a result, so is

00000000000000000000
11111111111111111111

and

10101010101010101010

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.

link|flag
3  
"the longer the run is of bits it emits the more likely they are to change". No - if it's truly random it's a geometric distribution so probability of a change is independent of past behaviour. – Alabaster Codify Jan 20 at 19:20
1  
The chance of a particular sequence of bits being produced does decrease as the length of the sequence increases, but you could say that about any "pattern", whether it seemed random or not. – Alabaster Codify Jan 20 at 19:22
@Alabaster — I was just about to point those out myself. :-) – Ben Blank Mar 7 at 0:44
Nicely done. +1 – KG Jul 29 at 22:43
vote up 30 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 5 vote down

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".

link|flag
One could also argue that the function is to return a number, that can differ in different implementations. If it wants to. Note that the function name doesn't says anything about GENERATING a random number, just that is returns one. (In this implementation pregenerated.) – svinto Mar 6 at 23:20
vote up 39 vote down

Tour of Accounting

link|flag
5  
A question based on XKCD with an answer based on Dilbert, this should be in the SO Hall of Fame – Neil N Sep 10 at 16:46
Holy Cows, nobody nails it like Scott Adms! – TheVillageIdiot Oct 9 at 10:35
vote up 24 vote down

"I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question." -- Charles Babbage

link|flag
That's mean. I upvoted you =) – Sergio Acosta Mar 9 at 19:56
3  
Context: Babbage was asked (IIRC), "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" – Lucas Jones Jul 29 at 22:44
vote up 11 vote down

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".

link|flag
2  
probably written by our outsourced development team :) – gbjbaanb May 7 at 14:22
vote up 2 vote down

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.

link|flag
vote up 1 vote down

Snippet seen in a project I previously worked:

/**
 * Return a random number between 1 to 5
 */
private int getRandom() {
    int rand = Random.nextInt(6); //number between 0 to 5 (inclusive)
    if (rand == 0)
        rand++;
    return rand;    
}

Unfortunately, it wasn't a lottery app else I'd be a millionaire by now.

link|flag
3  
ogh... I felt a great disturbance in the Force, as if a random number of statisticians suddenly cried out in horror and were suddenly silenced. – Stefano Borini Jul 21 at 22:08
I think I've seen the same thing in a real random number generation function. Mind you, it was dealing with floats between 0 and 1, so the chance of it being corrupted was only epsilon in 1. – Andrew Grimm Nov 4 at 12:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.