Binomial Coefficient Calculator

C(n,k) & Pascal's triangle

CalculatorsFreeNo Signup
4.2(731 reviews)
All Tools

Loading tool...

About Binomial Coefficient Calculator

A binomial coefficient calculator that computes C(n,k) = n!/(k!(n−k)!) using overflow-safe multiplicative formula. Shows Pascal's triangle row, verifies identities like C(n,k)=C(n,n−k), and lists all C(n,0) through C(n,n). All calculations are client-side. Essential for combinatorics, probability, statistics, and the binomial theorem.

Binomial Coefficient Calculator Features

  • C(n,k)
  • Pascal row
  • Identities
  • Overflow-safe
  • All C(n,·)
C(n,k) = n!/(k!(n−k)!) counts ways to choose k items from n. Properties: C(n,0)=C(n,n)=1, C(n,k)=C(n,n−k), C(n,k)=C(n−1,k−1)+C(n−1,k). Binomial theorem: (a+b)ⁿ = ΣC(n,k)aⁿ⁻ᵏbᵏ. Pascal's triangle row n lists all C(n,k).

How to Use

Enter n and k:

  • n: Total items
  • k: Items chosen
  • Result: C(n,k) and full row

Key Identities

  • C(n,k) = C(n,n−k) (symmetry)
  • ΣC(n,k) = 2ⁿ (sum of row)
  • C(n,k) = C(n−1,k−1)+C(n−1,k)

Binomial Theorem

(x+y)ⁿ = Σ C(n,k) xⁿ⁻ᵏyᵏ. The coefficients are exactly Pascal's triangle row n.

Step-by-Step Instructions

  1. 1Enter n (total).
  2. 2Enter k (chosen).
  3. 3View C(n,k).
  4. 4See Pascal's triangle row.
  5. 5Check identities.

Binomial Coefficient Calculator — Frequently Asked Questions

What's the difference between permutations and combinations?+

Permutations (P(n,k) = n!/(n−k)!) count ordered arrangements. Combinations (C(n,k)) count unordered selections. C(n,k) = P(n,k)/k!.

Why does C(n,k) = C(n,n−k)?+

Choosing k items to include is the same as choosing n−k items to exclude. Both count the same subsets.

How large can n be?+

JavaScript handles exact integers up to 2⁵³. For large n, C(n,k) grows fast. This calculator uses multiplicative formula to avoid overflow as long as possible.

Share this tool: