How to test a random number generator

Last year I wrote a chapter for O’Reilly’s book Beautiful Testing (ISBN 0596159811). The publisher gave each of us permission to post our chapters online, and so here is Chapter 10: How to test a random number generator.

Update: The chapter linked to above describes how to test transformations of a trusted uniform random number generator. For example, maybe your programming language provides a way to generate numbers between 0 and 1 uniformly, and you have written code to transform that into a normal distribution. That’s the most common case. Few people write their own core RNG; most bootstrap the core RNG into other kinds of RNG.

If you need to test a uniform random number generator, I can help with that.

18 thoughts on “How to test a random number generator

  1. hi john,

    thank you for the chapter.

    i’ve been following your blog this year. just wondering if you were planning to write a numerical computing book. or if there are books you would recommend.

  2. Wen, Thanks. I don’t have any plans to write a numerical computing book.

    One of my favorite numerical books is an old one, Numerical Methods that Work. It’s not a cookbook. It’s a book on how to think about numerical computing.

  3. Acton’s book is an entertaining read, but how well has it stood up? Computing power and software have advanced so much in the 40 years since he wrote it, it’s not clear that the cautionary tales he tells are still as relevant. He might tell you a story of how 20 minutes of thought could have saved an investigator 20 hours of computing time. Now however, that same computer program, or a more robust off-the-shelf one, might run in a couple of seconds. So why think? ;)

    You could argue that the complexity of problems has grown as computing power has grown, so that thought is as necessary as ever. However, I might counter that more complex problems are difficult to tackle in the way the problems in Acton’s book can be tackled. Don’t the problems in Acton’s book seem rather… quaint?

    I think if I were going to recommend a book for learning practical, hands-on numerical computing, I would recommend Numerical Recipes.

  4. I think the principles in Acton’s book are still valuable, though the specifics are outdated. For example, most computing is now done in double precision rather than single precision. Loss of accuracy still happens when you’re not careful; you see the same problems but for a smaller range of inputs.

    Acton doesn’t deal with sorting, but bubble sort is still slower than heap sort, even though both are instantaneous for small data sets. The idea of what is “small” has changed over time, but the principle remains.

    However, there is one important area that Acton doesn’t address at all if I remember correctly, and that is random methods: random number generation, Monte Carlo integration, etc. These methods have become far more common in practice (at least in my practice :)).

  5. I think the most out-of-date aspect of Acton’s book is that it has an entire chapter on Fourier Series, but doesn’t mention the FFT.

  6. I liked the chapter, in particular the line “The point is not only to test the quality of the library itself, but also to test the user’s understanding of the library.”

    I’m surprised you didn’t recommend plotting the data and taking a look at it – always seems valuable.

  7. I like this one for testing RNG’s.

    http://portal.acm.org/citation.cfm?doid=1268776.1268777

    There is a nice battery of tests ready to go in C++. If the RNG makes it through that in good shape, great.

    One kind of disturbing aspect of the chapter is that its existence implies software developers should be going off and writing their own RNGs. Why bother when there are good ones out there that have been through very rigorous scrutiny?

    The problem with plotting random data, especially uniform data, is that we can’t visually detect any meaningful flaws in the data.

  8. Jason: I don’t want to encourage anyone to develop their own uniform random number generation algorithm. But some people will need to implement existing algorithms in new languages. And even more people will need to transform a uniform random sequence into a sequence with another distribution, maybe a distribution unique to their problem.

  9. John,

    Thanks for the reply. I hope the readership of the book takes your perspective as well!

    Jason

  10. Hi John,

    Even though, this post is no longer a current subject of discussion. I write to appreciate your efforts in putting together a collection of numerical gems in this blog. I have benefitted quite a lot from this blog. Remain blessed.

    From Singapore.

  11. Hi John,

    I share your love of Acton’s book and Steve’s recognition that it is, in some respects, outdated. I like Acton’s mindset of thinking about what you are trying to calculate and being willing to find different algorithms when you are up against the potential for or reality of catastrophic loss of precision. The original book had the title embossed into the red cover, with the letters highlighted in silver. Also embossed, but not highlighted, was the word “usually”. Lovely.

  12. Just came across this link from the CompSciFact twitter account. Are you aware of the typo in the first footnote on page 131? The word “lest” should be “least”, I believe. I know this is a few years old, so maybe it’s not helpful now.

  13. I’m reminded that sometimes, even though you may THINK you want random, it may not be what you want. From this tweet from earlier today, what the tweeter really wants is “random, or even a cheap approximation, unless the current entry has come up TOO recently:” “iPad, I appreciate your shuffle. I do. And you know I like Enya “The Longships.” But not as every third song. #shuffleparalysis”

    And I hope I’m not too much of an insufferable pedant in pointing out that this is about testing pseudo-random number generators (PRNG) – a “true” random number generator will (almost?!) always pass such tests.

  14. I’m disappointed not to see more than a brief mention of the different needs for random number generation for cryptography, given the number of cryptosystem failures that happen when people use inadequate RNGs.

    (Even just a sentence in bold-face all caps about never mistaking good distribution properties for cryptographic unpredictability would have helped :-)

  15. That’s a can of worms I chose not to open. My chapter only deals with one aspect of random number generation, transforming a uniform distribution into the distribution you need, because that’s the most common task. I’ve since written a series of blog posts on how to test the core uniform generator, though that’s very different. And I lightly touch on cryptographic applications in a few posts.

    DIEHARDER results for PCG and MWC

    Testing PCG

    Testing RNGs with PractRand

    Manipulating a RNG

    A cryptographically secure RNG (Blum Blum Shub)

Comments are closed.