Combination (without repetition)
C(n, r) = n! / (r! × (n - r)!)Count the number of ways to choose r items from n distinct items where order does not matter.
Where:
n= Total number of items to choose fromr= Number of items being chosenn!= n factorial = n × (n-1) × ... × 1