Enter the total number of objects (n) and the number of objects to be chosen (r) to calculate the number of combinations.
Combinations are a way of selecting items from a collection, such that the order of selection does not matter. In other words, it's the number of ways to choose r items from a set of n items, where the order doesn't matter.
The formula for calculating combinations is:
\[ C(n,r) = \binom{n}{r} = \frac{n!}{r!(n-r)!} \]
Where:
Let's calculate the number of combinations for choosing 3 items from a set of 5 items.
Therefore, there are 10 ways to choose 3 items from a set of 5 items.
Here's a visual representation of combinations:
This diagram illustrates choosing 3 items (red) from a set of 5 items. The number of different ways to make this selection is the number of combinations, C(5,3) = 10.