Best way to generate random numbers at home?

Since the topic of random numbers is in the air tonight… this was in my to-ask list since my d3 thread:

What is the best way to generate random numbers at home?

A professor once said to pick a big fat book with thin pages (dictionary, phone book) and open it anywhere and take only the last digit. Repeat as needed and discard out of range numbers if necessary.

For example, if you need a random number from 1 to 47, you open the first page, that is your last digit (units). Repeat for the next digit (tens). Here you can map 6-0 as 1-5 or discard them. If you got a 48, then start from the beginning.

The idea here being that with fat enough fingers and thin enough pages, no matter where you are biased to open the book, the last digit was close enough to random.

Is this really the best way to generate random numbers with stuff generally found at home and without resorting to making a mess, using higher math, etc?

Using the random number button on any decent calculator :stuck_out_tongue:

Have a look at integers.

Roll dice.

I am sorry I didn’t specify. No dice, no computers. I mean common daily objects in your grandma’s house.

Shuffle a deck of cards.

Bonus: convert from base-52 (or base-13) to base-10.

If cards are as forbidden as dice, do coins count?

How many random numbers do you need?

Your brain. Just start calling out numbers.

That’s a bad method. People are very bad at avoiding patterns. There are interesting experiments wherein people have been asked to type “as randomly as possible” on a keyboard – it turns out to be not very difficult to write a computer program which can predict, with surprising accuracy, which key they will hit before they hit it.

er, a random number of them? :slight_smile:
Coins are dice, of course. And they only do 0 or 1.

Say that at any time you need a number from 1 to 17, to choose from options. Pick a student at random, give something to a child, etc.

…which naturally makes it a good candidate for picking a random binary number, which you can then convert to decimal.

Before polyhedral dice (i.e., dice other than the normal six-siders) were generally available, D&D players used numbered chits.

Make yourself some identical bits of paper or cardstock (maybe 1/2" square sections of index card) and write each number you want to randomize from on a bit. Throw all of them into a hat or coffee mug or something. Shake. Pick one.

I would modify that to the next-to-last digit of the page number to avoid having to decide which of the two facing pages to use.

Use a telephone directory, open in the middle, take the final 4 digits of each phone number to get a random string of numbers.

deck of cards with the J, Q, K removed seems like the fastest way to me.

The random page method is no good, I find when I open books Ive read before randomly to read on the toilet, its often the exact same page as other times. Many books will open more readily to certain pages.

Does your grandmother have a tile floor or counter?
Throw a fist full of salt in the air, and count how many grains land in each square.

Using a telephone directory as described above get a four digit number from 0000 to 9999. Use pen and paper to divide by 17, with remainder. The remainder will give you a random integer from 0 to 16. Add 1.

Look at the second hand of a clock. Divide the 60 seconds into equal segments, and see what you get. That gets you 2,3,4,6,12,15,20, or 30 choices.