Binomial Coefficient Calculator – n Choose k
Calculate C(n,k) exactly for non-negative integers up to 10,000. The result updates live and preserves large integers with BigInt.
Calculate C(n,k) exactly for non-negative integers up to 10,000. The result updates live and preserves large integers with BigInt.
The calculator evaluates the binomial coefficient C(n,k): the number of ways to choose k items from n items when order does not matter and items are not repeated.
The calculation runs entirely in the browser and uses exact integer arithmetic.
It is the number of ways to select k items from n available items without repetition and without considering order.
You cannot select more items than are available, so there are no valid selections.
Choosing the items that are included is equivalent to choosing the items that are left out.
Yes. It uses BigInt and returns the exact integer for inputs up to 10,000.
Combinations ignore order; permutations treat different orders as different outcomes.
The factorial formula removes the different orders of the same selection and therefore counts each combination once.
C(n,k) = n! / (k! · (n-k)!)nkThe standard condition is 0 ≤ k ≤ n. Outside this range there are no valid selections.
The result is a count of unordered selections, not a list of the selections.
C(5,2) = 5! / (2! · (5-2)!)5! / (2! · 3!) = 120 / (2 · 6) = 10There are 10 unordered ways to choose two items from five.Use the binomial coefficient when order does not matter. If A-B and B-A count as different results, the problem requires permutations.