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.

Formule

C(n,k) = n! / (k! × (n-k)!)

Guide étape par étape

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

Exemples résolus

Entrée
C(5,2)
Résultat
10
5! / (2! × 3!) = 120 / 12 = 10

Erreurs courantes à éviter

  • Confusing combinations with permutations
  • Incorrect factorial calculations

Prêt à calculer ? Essayez la calculatrice gratuite Combinations

Essayez-le vous-même →

Paramètres