learn.howToCalculate
learn.whatIsHeading
Combinations count the number of ways to select k items from n items without regard to order. Written as C(n,k) or "n choose k", used in probability and statistics.
सूत्र
C(n,k) = n! / (k! × (n-k)!)
चरण-दर-चरण मार्गदर्शिका
- 1Enter n (total items) and k (items to select)
- 2Calculate factorials n!, k!, and (n-k)!
- 3Divide n! by the product of k! and (n-k)!
हल किए गए उदाहरण
इनपुट
C(5,2)
परिणाम
10
5! / (2! × 3!) = 120 / 12 = 10
सामान्य गलतियां जिनसे बचना है
- ✕Confusing combinations with permutations
- ✕Incorrect factorial calculations
learn.ctaText
इसे स्वयं आज़माएँ →