Combinations and Unordered Selections

College Depth 66 in the knowledge graph I know this Set as goal
Unlocks 21 downstream topics
combinatorics combinations

Core Idea

A combination is an unordered selection of objects where the sequence does not matter. The number of combinations of n objects taken r at a time is C(n,r) = n! / (r!(n-r)!). Combinations count selections where we care only about which items are chosen, not their order.

How It's Best Learned

Compare permutations and combinations side-by-side using the same scenario (e.g., selecting committee members). Show why dividing by r! removes the ordering.

Common Misconceptions

Explainer

You already know from permutations that P(n, r) = n! / (n−r)! counts the number of ordered selections — the number of ways to arrange r items chosen from n. The key question combinations answer is: what if the order does not matter? If you are choosing 3 people for a committee from a group of 10, the selection {Alice, Bob, Carol} is the same committee regardless of whether Alice was named first, second, or third. Permutations would count all 6 orderings of that trio as distinct; combinations count them as one.

The fix is precise: every combination of r items corresponds to exactly r! different orderings. So P(n, r) overcounts by exactly r! for every distinct group. Dividing removes that overcount: C(n, r) = P(n, r) / r! = n! / (r! · (n−r)!). This ratio is also written as "n choose r" — a notation that emphasizes the selection interpretation. For the committee example, C(10, 3) = 720 / 6 = 120 distinct committees.

The hardest part of using combinations is recognizing when a problem is asking for unordered selection. The signal is that the items being chosen are interchangeable in their roles — committee members, pizza toppings, cards dealt, students selected for a group. If the items have distinct roles (president, vice president, secretary), order matters and permutations apply. Ask yourself: if I swap two chosen items, do I get a meaningfully different outcome? If yes, use permutations. If no, use combinations.

Two properties are worth internalizing. First, C(n, r) = C(n, n−r): choosing r items to include is the same as choosing n−r items to exclude. This symmetry cuts calculation time and provides a useful sanity check. Second, the values C(n, r) are exactly the binomial coefficients — the numbers that appear in Pascal's triangle and in the expansion of (a + b)ⁿ. Every entry in Pascal's triangle is the count of a combinatorial selection, which is why combinations appear everywhere in probability, algebra, and counting arguments.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsPiecewise FunctionsStep FunctionsComposition of FunctionsInverse FunctionsRadical Functions and GraphsRational ExponentsExponential Functions and GraphsGeometric Sequences and SeriesSigma NotationExpected ValueThe Probabilistic Method in Graph TheoryProbabilistic Method in CombinatoricsPermutations and Ordered ArrangementsCombinations and Unordered Selections

Longest path: 67 steps · 265 total prerequisite topics

Prerequisites (1)

Leads To (6)