vote up 5 vote down star
1

Okay, I guess this is entirely subjective and whatnot, but I was thinking about entropy sources for random number generators. It goes that most generators are seeded with the current time, correct? Well, I was curious as to what other sources could be used to generate perfectly valid, random (The loose definition) numbers.

Would using multiple sources (Such as time + current HDD seek time [We're being fantastical here]) together create a "more random" number than a single source? What are the logical limits of the amount of sources? How much is really enough? Is the time chosen simply because it is convenient?

Excuse me if this sort of thing is not allowed, but I'm curious as to the theory behind the sources.

flag

15 Answers

vote up 8 vote down check

The Wikipedia article on Hardware random number generator's lists a couple of interesting sources for random numbers using physical properties.

My favorites:

  • A nuclear decay radiation source detected by a Geiger counter attached to a PC.
  • Photons travelling through a semi-transparent mirror. The mutually exclusive events (reflection — transmission) are detected and associated to "0" or "1" bit values respectively.
  • Thermal noise from a resistor, amplified to provide a random voltage source.
  • Avalanche noise generated from an avalanche diode. (How cool is that?)
  • Atmospheric noise, detected by a radio receiver attached to a PC

The problems section of the Wikipedia article also describes the fragility of a lot of these sources/sensors. Sensors almost always produce decreasingly random numbers as they age/degrade. These physical sources should be constantly checked by statistical tests which can analyze the generated data, ensuring the instruments haven't broken silently.

link|flag
That's probably where I read about my answer! – Feet Nov 19 '08 at 2:48
Superfluous apostrophe alert! – Chris Charabaruk Nov 19 '08 at 4:22
Apostrophe no more. – Brian Gianforcaro Nov 19 '08 at 4:32
Project idea: USB hamster wheel – Ates Goral Feb 7 at 15:47
technically a couple of those aren't random, they're just a few hundred orders of magnitude too complex for anything to simulate in he next, oh say 100 years... – RCIX Nov 26 at 9:02
vote up 0 vote down

Source of seed isn't that much important. More important is the pseudo numbers generator algorithm. However I've heard some time ago about generating seed for some bank operations. They took many factors together:

  • time
  • processor temperature
  • fan speed
  • cpu voltage
  • I don't remember more :)

Even if some of these parameters doesn't change much in time, you can put them into some good hashing function.

How to generate good random number?

Maybe we can take into account inifinite number of universes? If this is true, that all the time new parallel universes are being created, we can do something like this:

int Random() {
    return Universe.object_id % MAX_INT;
}

In every moment we should be on another branch of parallel universes, so we should have different id. The only problem is how to get Universe object :)

link|flag
vote up 0 vote down

//Don't worry about a "good" seed for a random number generator. The statistical properties of the sequence do not depend on how the generator is seeded.//

I disagree with this. If you seed the Mersenne Twister with all bits set to zero except one, it will initially generate numbers which are anything but random. It takes a long time for the generator to churn this state into anything that would pass statistical tests. Simply setting the first 32 bits of the generator to a seed will have a similar effect. Also, if the entire state is set to zero the generator will produce endless zeroes.

Properly written RNG code will have a properly written seeding algorithm that accepts say a 64 bit value and seeds the generator so it will produce decent random numbers for each possible input. So if you are using a reliable library then any seed will do. But if you hack together your own implementation then you need to be careful.

link|flag
vote up 0 vote down

Noise on top of the Cosmic Microwave Background spectrum. Of course you must first remove some anisotropy, foreground objects, correlated detector noise, galaxy and local group velocities, polarizations etc. Many pitfalls remain.

link|flag
vote up 1 vote down

Some TPM (Trusted Platform Module) "chips" have a hardware RNG. Unfortunately, the (Broadcom) TPM in my Dell laptop lacks this feature, but many computers sold today come with a hardware RNG that uses truly unpredictable quantum mechanical processes. Intel has implemented the thermal noise variety.

Also, don't use the current time alone to seed an RNG for cryptographic purposes, or any application where unpredictability is important. Using a few low order bits from the time in conjunction with several other sources is probably okay.

A similar question may be useful to you.

link|flag
vote up 1 vote down

RFC 1149.5 specified 4 as the standard IEEE-vetted random number.

RFC 1149.5 specified 4 as the standard IEEE-vetted random number.

link|flag
vote up 2 vote down

Modern RNGs are both checked against correlations in nearby seeds and run several hundred iterations after the seeding. So, the unfortunately boring but true answer is that it really doesn't matter very much.

Generally speaking, using random physical processes have to be checked that they conform to a uniform distribution and are otherwise detrended.

In my opinion, it's often better to use a very well understood pseudo-random number generator.

link|flag
vote up 0 vote down

I found HotBits several years ago - the numbers are generated from radioactive decay, genuinely random numbers.

There are limits on how many numbers you can download a day, but it has always amused me to use these as really, really random seeds for RNG.

link|flag
vote up 0 vote down

I've used an encryption program that used the users mouse movement to generate random numbers. The only problem was that the program had to pause and ask the user to move the mouse around randomly for a few seconds to work properly which might not always be practical.

link|flag
vote up 3 vote down

Nine. Nine. Nine. Nine. ....

That's the problem with randomness, you can never be sure.

link|flag
vote up 2 vote down

Linux kernel uses device interrupt timing (mouse, keyboard, hard drives) to generate entropy. There's a nice article on Wikipedia on entropy.

link|flag
vote up 2 vote down

I use Random.ORG, they provide free random data from Atmospheric noise, that I use to periodically re-seed a Mersene-Twister RNG. Its about as random as you can get with no hardware dependencies.

link|flag
vote up 5 vote down

SGI once used photos of a lava lamp at various "glob phases" as the source for entropy, which eventually evolved into an open source random number generator called LavaRnd.

link|flag
vote up 0 vote down

Some use keyboard input (timeouts between keystrokes), I heard of I think in a novel that radio static reception can be used - but of course that requires other hardware and software...

link|flag
vote up 3 vote down

Don't worry about a "good" seed for a random number generator. The statistical properties of the sequence do not depend on how the generator is seeded. There are other things, however. to worry about. See Pitfalls in Random Number Generation.

As for hardware random number generators, these physical sources have to be measured, and the measurement process has systematic errors. You might find "pseudo" random numbers to have higher quality than "real" random numbers.

link|flag

Your Answer

Get an OpenID
or

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