AMC 10 · 2023 · #8
Grade 11 countingPick an answer.
There are 2¹³ subsets in play, so checking them one at a time is hopeless by hand. The rule ties two features of B together — its size and its smallest element — and Tool #4 (Introduce a Variable) collapses those two into one letter k. Once k is named, Tool #7 (Identify Subproblems) does the real work: every subset has exactly one smallest element, so sorting the subsets by that value cuts the single hard count into a few small counts that overlap nowhere and miss nobody. Tool #14 (Extreme Principle) then squeezes the range of k, because a large smallest element demands a large set while simultaneously leaving fewer numbers above it to build from — that tension caps k fast. Inside each surviving case Tool #2 (Make a Systematic List) turns the leftover freedom into one plain unordered choice that a binomial coefficient counts.
Name the least element
The count and the minimum are equal.
The smallest element and the size are the same number, so naming it once pins down everything the rule demands.
10.S-CP.A.1Introduce A VariableSplit by that value
The rest are all larger.
A set has only one smallest element, so each subset lands in exactly one pile and the piles simply add up.
A set has only one smallest element, so each subset lands in exactly one pile.
▸ Why?
The piles never overlap and leave nothing out, so their counts simply add.
▸ Why?
Any two elements compare in exactly one way, so the smallest one is never in doubt.
Bound the value
There must be enough numbers above.
A big smallest element demands a big set but also leaves fewer numbers above it to build from, and those two demands collide quickly.
7.EE.B.4Extreme PrincipleCount with combinations
Count each case with combinations.
Once the smallest element is nailed down, the rest of the set is a plain unordered pick from the numbers above it.
11.S-CP.B.9Make A Systematic ListAdd the piles
Adding gives 144.
Non-overlapping piles that cover everything can just be added, with no correction for double counting.
4.NBT.B.4Identify SubproblemsLet the smallest element name itself: if the smallest is k, then B needs k-1 more numbers picked from the 12-k numbers above it, so add C(12-k, k-1) over every k that still fits.
- Name the least element
- Split the count by k
- Bound how large k can be
- Count each pile with combinations
- Add the six piles