Combinations and their characteristics
Definition and Key Properties
A combination is a way of selecting items from a larger set where the order of selection doesn't matter. Unlike permutations, which count every different arrangement as distinct, combinations only care about which items you pick, not the sequence you pick them in.
Each object can be selected at most once (no repetitions), and the number of combinations is always less than or equal to the number of permutations for the same values of and . This makes sense: once you stop caring about order, many permutations collapse into a single combination.
The standard notation is or (read "n choose r"), where:
- = total number of objects available
- = number of objects you're choosing
Examples and Applications
A few concrete examples show how quickly combination counts grow:
- Committee selection: Choosing 3 people from a group of 10 gives possible committees.
- Poker hands: Choosing 5 cards from a standard 52-card deck gives possible hands.
- Lottery draws: Many lotteries ask you to pick 6 numbers from 49, yielding possible tickets.
Beyond games of chance, combinations show up in biology (counting possible genetic trait combinations), chemistry (analyzing molecular structures), and statistics (choosing samples from populations).
Combinations using binomial coefficients
_permutations_probability_statistics_combinatorics_diagram%22-var-w-rep-plus-1.png)
Calculating Combinations
The binomial coefficient gives the number of ways to choose objects from objects. The formula is:
Here's how to apply it step by step:
-
Identify (total items) and (items chosen).
-
Compute , , and .
-
Divide by the product .
Example: How many ways can you choose 3 people from a group of 10?
Notice that in step 3 you can cancel from the numerator and denominator, which is why the numerator simplifies to just . This shortcut comes from the equivalent product formula:
This version is much more practical for computation, especially with larger numbers.
One important property is symmetry:
This means choosing which items to include is the same count as choosing which items to leave out. For instance, .
Pascal's Triangle and Binomial Coefficients
Pascal's Triangle is a triangular array where each entry equals the sum of the two entries directly above it. Each row corresponds to a value of , and each position within that row corresponds to a value of .
Row 0 through Row 4 look like this:
| Row () | Entries |
|---|---|
| 0 | 1 |
| 1 | 1, 1 |
| 2 | 1, 2, 1 |
| 3 | 1, 3, 3, 1 |
| 4 | 1, 4, 6, 4, 1 |
Row 4, for example, gives , , , , .
The rule that generates each entry is called Pascal's Identity:
This works because when you add a new element to a set, each combination of size either includes that new element (counted by ) or it doesn't (counted by ).
Pascal's Triangle is handy for quickly looking up small binomial coefficients without doing any factorial arithmetic.
Permutations vs Combinations
_permutations_probability_statistics_combinatorics_diagram%22-var-w-rep-plus-2.png)
Key Differences
The core distinction: permutations count arrangements (order matters), while combinations count selections (order doesn't matter).
Because of this, the number of permutations is always greater than or equal to the number of combinations for the same and . The exact relationship is:
This makes intuitive sense. For every single combination of items, there are ways to arrange those items. So permutations "inflate" the combination count by a factor of .
You can also see this in the formulas side by side:
- Permutations:
- Combinations:
The only difference is the extra in the denominator of the combination formula, which divides out all the redundant orderings.
Problem-Solving Indicators
Word problems usually signal which formula to use through specific language:
- Permutation clues: "arrange," "order," "sequence," "rank," "first/second/third"
- Arranging 5 people in a line:
- Combination clues: "select," "choose," "group," "committee," "team"
- Selecting 3 people from 5 for a committee:
A useful test: ask yourself, "If I rearranged the same items, would it count as a different outcome?" If yes, use permutations. If no, use combinations.
Watch out for tricky wording. "How many PIN combinations are possible?" actually refers to permutations, because the order of digits matters. Don't let everyday use of the word "combination" mislead you.
Applications of combinations
Probability and Statistics
Combinations are central to probability calculations whenever you're counting equally likely outcomes. The binomial probability formula, for instance, uses to count the number of ways to get exactly successes in independent trials:
They also appear in:
- Sampling: Calculating how many distinct samples of size can be drawn from a population of size
- Poker and lottery odds: Finding the probability of specific hands or number draws
- Binomial theorem: The coefficients in the expansion of are exactly the binomial coefficients
Other Fields and Applications
- Computer Science: Generating all subsets of a set, analyzing algorithm complexity, and designing cryptographic systems all rely on combination counting.
- Genetics: Calculating the probability of inheriting specific allele combinations, studying genetic diversity in populations, and modeling mutation possibilities.
- Chemistry: Determining possible molecular structures and analyzing potential reaction pathways between sets of reagents.
- Economics and Finance: Selecting portfolios from a set of available assets, and modeling strategic choices in game theory.