Skip to main content

כיצד לחשב את Combinations

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

Worked Examples

קלט
C(5,2)
תוצאה
10
5! / (2! × 3!) = 120 / 12 = 10

Common Mistakes to Avoid

  • Confusing combinations with permutations
  • Incorrect factorial calculations

מוכן לחשב? נסה את מחשבון Combinations החינמי

נסה זאת בעצמך →

הגדרות