Skip to main content

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)!)

دليل خطوة بخطوة

  1. 1Enter n (total items) and k (items to select)
  2. 2Calculate factorials n!, k!, and (n-k)!
  3. 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

هل أنت مستعد للحساب؟ جرب الآلة الحاسبة Combinations المجانية

جربه بنفسك →

الإعدادات