Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm going crazy: Where is the Ruby function for factorial? No, I don't need tutorial implementations, I just want the function from the library. It's not in Math!

I'm starting to doubt, is it a standard library function?

share|improve this question
28  
I do it like 6.downto(1).inject(:*) – mckeed Mar 12 '10 at 17:26
14  
@mckeed: Or (1..6).inject(:*) which is a bit more succinct. – sepp2k Mar 12 '10 at 17:30
7  
why would you expect there to be one? – GregS Mar 13 '10 at 0:43
2  
I wonder what the status is of mathematics and science libraries for Ruby. – Andrew Grimm Jun 15 '11 at 3:10
3  
Just a note on the provided examples using inject. (1..num).inject(:*) fails for the case where num == 0. (1..(num.zero? ? 1 : num)).inject(:*) gives the correct answer for the 0 case and returns nil for negative parameters. – Yogh Dec 20 '11 at 9:19
show 2 more comments

7 Answers

up vote 45 down vote accepted

There is no factorial function in the standard library.

share|improve this answer

It's not in the standard library but you can extend the Integer class.

class Integer
  def factorial_recursive
    self <= 1 ? 1 : self * (self - 1).factorial
  end
  def factorial_iterative
    f = 1; for i in 1..self; f *= i; end; f
  end
  alias :factorial :factorial_iterative
end

N.B. Iterative factorial is a better choice for obvious performance reasons.

share|improve this answer
6  
He explicitly said, he doesn't want an implementation. – sepp2k Mar 12 '10 at 17:26
52  
He may not; but people searching SO for "Ruby factorial" might. – Pierre-Antoine LaFayette Mar 12 '10 at 17:49
3  
another implementation here: rosettacode.org/wiki/Factorial#Ruby – glenn jackman Mar 12 '10 at 20:38
That is an elegant way to do it :) – Pierre-Antoine LaFayette Mar 12 '10 at 20:51
rosettacode.org/wiki/Factorial#Ruby is just wrong. There isn't a case for 0 – Douglas G. Allen Apr 24 at 22:42

Like this is better

(1..n).inject(:*) || 1
share|improve this answer

You could also use Math.gamma function which boils down to factorial for integer parameters.

share|improve this answer
2  
From the docs: "Note that gamma(n) is same as fact(n-1) for integer n > 0. However gamma(n) returns float and can be an approximation". If one takes that into account, it works, but the reduce solution seems a lot more straight forward. – Michael Kohl Jan 2 '12 at 15:51
Thanks for this! My gut says to use towards the standard library over a custom-written reduce whenever possible. Profiling might suggest otherwise. – David James Sep 18 '12 at 17:31
@DavidJames Couldn't trust my gut. See gist.github.com/4638729 – Alexander Wenzowski Jan 25 at 23:08

I just wrote my own:

def fact(n)
  if n<= 1
    1
  else
    n * fact( n - 1 )
  end
end

Also, you can define a falling factorial:

def fall_fact(n,k)
  if k <= 0
    1
  else
    n*fall_fact(n - 1, k - 1)
  end
end
share|improve this answer

Shamelessly cribbed from http://rosettacode.org/wiki/Factorial#Ruby, my personal favorite is

class Integer
  def fact
    (1..self).reduce(:*)
  end
end

>> 400.fact
=> 64034522846623895262347970319503005850702583026002959458684445942802397169186831436278478647463264676294350575035856810848298162883517435228961988646802997937341654150838162426461942352307046244325015114448670890662773914918117331955996440709549671345290477020322434911210797593280795101545372667251627877890009349763765710326350331533965349868386831339352024373788157786791506311858702618270169819740062983025308591298346162272304558339520759611505302236086810433297255194852674432232438669948422404232599805551610635942376961399231917134063858996537970147827206606320217379472010321356624613809077942304597360699567595836096158715129913822286578579549361617654480453222007825818400848436415591229454275384803558374518022675900061399560145595206127211192918105032491008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

This implementation also happens to be the fastest among the variants listed in Rosetta Code.

share|improve this answer
what the heck does that mean?! yeah it's fast but its very unuserfriendly though – simon May 17 '12 at 13:19
2  
it's also incorrect for 0! - should be something like: if self <= 1; 1; else; (1..self).reduce(:*); end – Tarmo May 21 '12 at 19:55
class Integer
  def factorial
    return self < 0 ? false : self==0 ? 1 : self.downto(1).inject(:*)
    #Not sure what other libraries say, but my understanding is that factorial of 
    #anything less than 0 does not exist.
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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