! Copyright (C) 2012 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: combinators.short-circuit kernel math math.combinatorics math.functions math.order math.ranges math.statistics math.vectors memoize sequences ; IN: math.extras MEMO: sterling ( n k -- x ) 2dup { [ = ] [ nip 1 = ] } 2|| [ 2drop 1 ] [ (sterling) ] if ; MEMO: bernoulli ( p -- n ) [ 1 ] [ (bernoulli) ] if-zero ; : chi2 ( actual expected -- n ) 0 [ dup 0 > [ [ - sq ] keep / + ] [ 2drop ] if ] 2reduce ; : chi2P ( chi df -- p ) dup df-check [ 2.0 / ] [ 2 /i ] bi* (chi2P) 1.0 min ;