AMC 10 · 2007 · #25
Grade 9 countingpatternPick an answer.
Listing 4096 subsets by hand is out of the question, and the answer choices are two apart, so nothing approximate will do. Tool #15 (Organize Information in More Ways) does the first real work: the spacy rule is written about blocks of three consecutive integers, and it has to be rewritten as a rule about how far apart two chosen numbers may be. That rewriting is the hinge of the problem — the difference between "at least 2 apart" and "at least 3 apart" changes the answer from 377 to 129. Once the rule is about gaps, it is purely local: it never refers to the number 12. Tool #9 (Solve an Easier Related Problem) exploits that — the same question on {1,…,n} for small n is answerable by hand, and the big case is built from small ones. Tool #4 (Introduce a Variable) names those smaller answers S_n so they can be related to each other, and Tool #2 (Make a Systematic List) supplies the hand-verified base cases and then runs the recursion up to n=12. The important discipline is that the recursion must be proved, in both directions, rather than guessed from the first few terms.
Windows of three become gaps of three
The window rule is really a minimum gap between members.
A block of three consecutive integers is exactly the set of positions lying within 2 of each other, so banning two-per-block is the same as banning gaps smaller than 3.
9.A-CED.A.3Organize Information In More WaysName the smaller problems
Naming the count for shorter ranges sets up a recursion.
The rule only looks at how far apart the chosen numbers are, so it still makes sense on a shorter stretch of the number line.
9.F-BF.A.1Introduce A VariableBase cases, listed by hand
The small cases can be listed by hand.
With only three numbers available, every two of them are too close together, so you can keep at most one.
7.SP.C.8Make A Systematic ListSplit on whether the top number is in
Splitting on the largest number gives the recursion.
Once you take the top number, the two slots just below it are dead, so what remains is the same puzzle three numbers shorter.
9.F-IF.A.3Solve An Easier Related ProblemRun the recursion up to twelve
Running it up gives 129.
Each new count is the previous count plus the count from three steps earlier, because the newest number either sits out or knocks out three slots.
Each new count is the previous count plus the count from three steps earlier, because the newest number is either in or out.
▸ Why?
Every set either uses the top number or does not, and no set does both, so the two counts add.
▸ Why?
The rule only looks at distances, so it still reads the same way on any shorter stretch of the line.
Second count: sort by largest element
A second count by largest element confirms 129, choice (E).
Every non-empty spacy set has a top element, and naming it forces everything else below a three-wide buffer.
9.F-IF.A.3Organize Information In More WaysSpacy really means the chosen numbers sit at least three apart, so taking the biggest one wipes out the two slots below it and leaves the very same puzzle three numbers shorter.
- Windows of three become gaps of three
- Name the smaller problems
- Base cases, listed by hand
- Split on whether the top number is in
- Run the recursion up to twelve
- Second count: sort by largest element