Calculate the number of ways to choose r objects from n total objects where order doesn't matter. Use the formula C(n,r) = n!/(r!(n-r)!)
A combination is a selection of objects where the order doesn't matter. C(n,r) represents the number of ways to choose r objects from n total objects.
C(n,r) = n! / (r! × (n-r)!)
Where: n ≥ r ≥ 0
C(5,3): Ways to choose 3 people from 5 total
C(5,3) = 5!/(3!×2!) = 120/(6×2) = 10
C(10,2): Ways to choose 2 items from 10 total
C(10,2) = 10!/(2!×8!) = 45