Scientific Calculator
silentmatt/combinatorics
Permutations and Combinations
Tagged:
nPr = function(n, r) { n! / (n-r)! };
nCr = function(n, r) { n! / (r! * (n-r)!) };
binomial = nCr;
Permutations and Combinations
Tagged:
nPr = function(n, r) { n! / (n-r)! };
nCr = function(n, r) { n! / (r! * (n-r)!) };
binomial = nCr;
0 Comments
Sign in to leave a comment