Combination Calculator (nCr)
Calculate the number of combinations (nCr) for choosing r items from n items.
The Combination Calculator computes the number of ways to choose r items from a set of n items where order does not matter. This is written as C(n,r) or nCr.
Enter n (total items) and r (items to choose). The formula is nCr = n! / (r! * (n-r)!). Since factorials grow very fast, this calculator uses Stirling's approximation for large numbers.
Combinations are used in probability, lottery calculations, committee selection, and any scenario where you need to count selections without regard to arrangement order.