Combination Calculator
Calculate combinations (nCr) - the number of ways to choose r items from n items without regard to order
About Combinations
A combination is a selection of items from a collection where the order does not matter.
Formula: C(n,r) = n! / (r! Γ (n-r)!)
Example: Choosing 3 items from 5 items (A,B,C,D,E): ABC is the same as BCA or CAB.
Use combinations when order doesn't matter (e.g., lottery numbers, committee selection).