AMC 10 · 2014 · #13
Grade 7 countingPick an answer.
Dropping the cap gives 5⁵ = 3125 assignments, far too many to list, so I need structure. Every legal assignment has a shape: how many rooms hold 2 friends, how many hold 1, how many are empty. Sorting by shape splits the count into a few subproblems that cannot overlap, since an assignment has only one shape. The risky part of any casework is a missing case, so before counting anything I name the number of double rooms as a variable and solve a small equation to prove the shape list is complete and that each shape actually fits in 5 rooms. Inside each shape I separate two different kinds of choice, which rooms play which role and which friends go where, and multiply. At the end I redo the whole count by the complement, subtracting the overloaded assignments from 3125, as an independent check.
Count with the cap switched off
Without the cap the count is 3125.
Counting the same thing with one rule removed is easy, and it fences the real answer in from above.
6.EE.A.1Solve An Easier Related ProblemProve there are exactly three shapes
The cap leaves exactly three shapes.
Naming the number of double rooms turns "have I found every case?" into solving one small equation, so nothing can slip past.
6.EE.B.5Introduce A VariableShape (1,1,1,1,1): one friend per room
One person per room gives 120.
When each room can take only one person, every friend placed removes exactly one option from everyone after.
7.SP.C.8Identify SubproblemsShape (2,1,1,1): one double, one empty
One doubled room gives 1200.
Settling what each room's job is before deciding who goes in it keeps the two kinds of choice from tangling.
7.SP.C.8Identify SubproblemsShape (2,2,1): two doubles, two empty
Two doubled rooms give 900.
Two pairs sent into two different-colored rooms are two different outcomes, so nothing here is counted twice.
7.SP.C.8Identify SubproblemsAdd the three shapes
Adding gives 2220, choice (B).
Cases that cannot happen together and leave nothing out simply add.
Cases that cannot happen together and leave nothing out simply add.
▸ Why?
Each arrangement matches exactly one room shape, so nothing is counted twice and none is missed.
▸ Why?
Inside a shape the room roles and the people are chosen independently, so those counts multiply first.
Sort the possibilities by shape, prove the list of shapes leaves nothing out, then count each shape by deciding what every room's job is before deciding who goes in it.
- Count with the cap switched off
- Prove there are exactly three shapes
- Shape (1,1,1,1,1): one friend per room
- Shape (2,1,1,1): one double, one empty
- Shape (2,2,1): two doubles, two empty
- Add the three shapes