up vote 88 down vote favorite
25
share [g+] share [fb]

In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?

link|improve this question

feedback

5 Answers

up vote 147 down vote accepted

What is wrong with rand(range) ?

If you needed a random integer to simulate a roll of a six-sided die, you'd use: 1 + rand(6). A roll in craps could be simulated with 2 + rand(6) + rand(6).

Finally, if you just need a random float, just call rand with no arguments.

(From first result of google search: Ruby Random Numbers)


As Marc-André Lafortune mentions in his answer below (go upvote it), Ruby1.9.2 has its own Random class (that Marc-André himself helped to debug, hence the 1.9.2 target for that feature).

For instance, in this game where you need to guess 10 numbers, you can initialize them with:

10.times.map{ 20+Random.rand(11) } 
#=> [26, 26, 22, 20, 30, 26, 23, 23, 25, 22]

Note:

This is why the equivalent of Random.new.rand(20..30) would be 20+Random.rand(11), since Random.rand(int) returns "a random integer greater than or equal to zero and less than the argument."
20..30 includes 30, I need to come up with a random number between 0 and 11, excluding 11.

link|improve this answer
3  
Thanks, VonC. I eventually did google for the answer, but I looked here for and didn't find the answer, so I thought it might be a useful addition. That's the purpose of SO, right? – Mark A. Nicolosi Oct 13 '08 at 18:12
No problem, you have SO perfectly figured ;) – VonC Oct 13 '08 at 18:21
8  
Yup, SO is just a place for people too lazy to use google. – Justin Nov 5 '09 at 18:05
31  
What's funny is that this post is now the first Google result. – ahsteele Nov 17 '09 at 17:39
Isn't this terribly non-ruby-like? I thought everything is an object, least-surprise and that... – Yar Jan 26 '10 at 18:50
show 9 more comments
feedback

You can use rand(42-10) + 10 to get a random number between 10 and 42.

Ruby 1.9.2 also introduces the Random class so you can now create your own random number generator objects and has a nicer API:

r = Random.new
r.rand(10...42) # => 22

The Random class itself acts as a random generator, so you call directly:

Random.rand(42-10) + 10 # => same as rand(42-10) + 10

In Ruby 1.9.3, you are able to call:

Random.rand(10...42) # or simply `rand(10...42)`

Available for all versions of Ruby by requiring my backports gem.

Notes on Random.new

In most cases, the simplest is to use rand or Random.rand. Creating a new random generator each time you want a random number is a really bad idea. If you do this, you will get the random properties of the initial seeding algorithm which are atrocious compared to the proporties of the random generator itself.

If you use Random.new, you should thus call it as rarely as possible, for example once as MyApp::Random = Random.new and use it everywhere else.

The cases where Random.new is helpful are the following:

  • you want to use the new API (like bytes, or rand with a range argument in Ruby 1.9.2)
  • you are writing a gem and don't want to interfere with the sequence of rand/Random.rand that the main programs might be relying on
  • you want separate reproducible sequences of random numbers (say one per thread)
  • you want to be able to save and resume a reproducible sequence of random numbers (easy as Random objects can marshalled)
link|improve this answer
Excellent! +1. I have completed my own answer to reflect that new feature (and mentioning your contribution with Bug #3104 ;) ). – VonC May 5 '10 at 14:20
How does the backports gem work, in broad strokes? – Yar May 5 '10 at 15:08
@yar: My backports gem is simply a collection of methods that are new to RUby 1.8.7, 1.9.1, 1.9.2, but implemented in Ruby. I use RubySpec to insure that the results are compatible with Ruby. – Marc-André Lafortune May 5 '10 at 15:16
1  
Random.rand(10..42) does not work. The Random.rand class method does not accept a range. (Ruby 1.9.2p180) – banister Jun 27 '11 at 7:46
1  
@banister: wow, I was convinced that the new api (rand with range, bytes, etc...) was available directly through the Random object. rand with range will be in 1.9.3, and I'll make a feature request for bytes. I've edited my answer – Marc-André Lafortune Jun 27 '11 at 14:20
show 7 more comments
feedback

Apparently srand is called when the ruby interpreter is started.

Therefore unless you have a specific need to reset the seed - extra calls to srand are unnecessary.

link|improve this answer
feedback

Well, I figured it out. Apparently there is a builtin (?) function called rand:

rand(n + 1)

If someone answers with a more detailed answer, I'll mark that as the correct answer.

link|improve this answer
2  
Yes, it's builtin in the Kernel module. – Christoph Schiessl Oct 13 '08 at 19:18
Ahh, thanks Chrisoph. – Mark A. Nicolosi Oct 13 '08 at 19:43
feedback

Don't forget to seed the RNG with srand() first.

link|improve this answer
1  
What happens if you don't call srand()? – Alex B Oct 17 '08 at 14:18
8  
srand is automatically called with the seed being from the current time if it wasn't already called. – Julian Feb 6 '10 at 9:25
feedback

Your Answer

 
or
required, but never shown

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