Combinations and Selections

College Depth 57 in the knowledge graph I know this Set as goal
Unlocks 18 downstream topics
combinations selections C(n,r) unordered

Core Idea

A combination is an unordered selection of objects. The number of r-combinations of n objects is C(n, r) = n!/(r!(n−r)!). When order doesn't matter—choosing committee members or lottery numbers—combinations apply.

How It's Best Learned

Derive C(n, r) = P(n, r)/r! by recognizing that r! orderings of the same r objects must be divided out. Use the identity C(n, r) = C(n, n−r) to simplify.

Common Misconceptions

Combinations count unordered sets; {A, B} and {B, A} are the same. Confusing combinations with permutations is the most common error in counting problems.

Explainer

You already know how to count permutations — ordered arrangements. The key insight connecting permutations to combinations is that every unordered selection corresponds to many ordered arrangements. If you pick 3 people from a group of 10 to form a committee, you don't care who was chosen "first" — what matters is the set of names on the list. But when you counted P(10, 3), you treated every ordering of those 3 people as distinct. The fix is simple: divide out the overcounting. Any selection of 3 people can be arranged in 3! = 6 ways, so C(10, 3) = P(10, 3) / 3! = 720 / 6 = 120.

This derivation, C(n, r) = P(n, r) / r! = n! / (r!(n−r)!), is the formula made meaningful. The denominator r! accounts for the fact that order doesn't matter among the chosen items, and (n−r)! accounts for the items not chosen (which were excluded from the permutation count already). You can also think of it as two successive choices: choose which r items are "in" (r! ways to arrange them, divided out) and which n−r are "out" (already handled). This symmetry gives the elegant identity C(n, r) = C(n, n−r) — the number of ways to choose a committee of 3 from 10 equals the number of ways to choose who is *not* on the committee.

The practical test for whether to use combinations or permutations is a question of identity: are {A, B, C} and {C, B, A} the same outcome, or different outcomes? A committee, a hand of cards, a subset of medicines — these are unordered, so combinations apply. A race podium, a password, a seating arrangement — these are ordered, so permutations apply. Most real counting problems require this judgment call first. Combinations appear constantly in probability (where "sample space" events are usually sets), in the binomial theorem, and in Pascal's triangle, where C(n, r) gives every entry.

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 ValueReading and Writing DecimalsComparing and Ordering DecimalsAdding and Subtracting DecimalsMultiplying DecimalsDividing DecimalsDividing FractionsMixed Number ArithmeticOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryThe Pigeonhole Principle and Its ApplicationsThe Pigeonhole PrinciplePigeonhole Principle and Its ApplicationsCounting Fundamentals and the Multiplication PrinciplePermutations and ArrangementsCombinations and Selections

Longest path: 58 steps · 240 total prerequisite topics

Prerequisites (2)

Leads To (1)