Scientific Calculator

(public) silentmatt/combinatorics

By silentmatt Matthew Crumley

Permutations and Combinations

Tagged: combinatorics statistics

nPr = function(n, r) { n! / (n-r)! };
nCr = function(n, r) { n! / (r! * (n-r)!) };
binomial = nCr;

spam? | offensive?

0 Comments

Sign in to leave a comment