math.extras: fix spelling of stirling, add ramanujan approximation of factorial.

db4
John Benediktsson 2012-09-25 10:48:09 -07:00
parent b5d0ccf200
commit b601d154c1
2 changed files with 11 additions and 8 deletions

View File

@ -9,7 +9,7 @@ HELP: bernoulli
{ $values { "p" integer } { "n" rational } }
{ $description "Return the Bernoulli number " { $snippet "p" } "." } ;
HELP: sterling
HELP: stirling
{ $values { "n" integer } { "k" integer } { "x" integer } }
{ $description "Return the Stirling number of the second kind for a set with " { $snippet "n" } " elements partitioned into " { $snippet "k" } " disjoint non-empty sets." } ;

View File

@ -1,7 +1,7 @@
! Copyright (C) 2012 John Benediktsson
! See http://factorcode.org/license.txt for BSD license
USING: combinators.short-circuit grouping kernel math
USING: combinators.short-circuit grouping kernel locals math
math.combinatorics math.constants math.functions math.order
math.primes math.ranges math.statistics math.vectors memoize
sequences ;
@ -10,18 +10,21 @@ IN: math.extras
<PRIVATE
DEFER: sterling
DEFER: stirling
: (sterling) ( n k -- x )
[ [ 1 - ] bi@ sterling ]
[ [ 1 - ] dip sterling ]
: (stirling) ( n k -- x )
[ [ 1 - ] bi@ stirling ]
[ [ 1 - ] dip stirling ]
[ nip * + ] 2tri ;
PRIVATE>
MEMO: sterling ( n k -- x )
MEMO: stirling ( n k -- x )
2dup { [ = ] [ nip 1 = ] } 2||
[ 2drop 1 ] [ (sterling) ] if ;
[ 2drop 1 ] [ (stirling) ] if ;
:: ramanujan ( x -- y )
pi sqrt x e / x ^ * x 8 * 4 + x * 1 + x * 1/30 + 1/6 ^ * ;
<PRIVATE