Combinations Calculator (nCr)
Will calculate the combinations for C(n,r) = n! / r! (n - r)!. "The number of ways of picking r unordered outcomes from n possibilities." [1]
For r <= n, n >= 0, and r >= 0.
Limited to values of n = 100 or less.
Combinations Formula:
C(n,r) = n! / r! (n - r)!
[1] For more information on combinations and binomial coefficients please see http://mathworld.wolfram.com/Combination.html
|