Question

What is the formula to calculate the number of combinations when picking k items from n items set without repetition where order does not matter?


Annonce
Ad

Answer

$$ C_k(n) = \frac{n!}{k!(n-k)!} $$


[source]
# ID Query