AMC 10 · 2021 · #16
Grade 6 number-theoryPick an answer.
Searching over a, b, c directly is the wrong end of the problem — hundreds of triples, and the gcd condition is awkward to test. The fix is to search over the gcds instead. Tool #4 (Introduce a Variable) names them x, y, z, and now the second condition is the clean equation x+y+z=9 with small positive parts. Tool #2 (Make a Systematic List) writes down every way three odd numbers can total 9 — there are only three. Then Tool #3 (Eliminate Possibilities) does the heavy lifting twice: a parity argument kills an entire branch of the problem in one line, and a divisibility argument built on the primality of 23 kills one of the three remaining shapes. Only two survive, and Tool #7 (Identify Subproblems) turns each one into a short, self-contained hunt for the actual triple.
Name the three gcds
Name the three gcds.
Naming the gcds moves the search off the huge list of triples and onto a tiny list of small divisors.
6.EE.B.6Introduce A VariableAn odd total forces all three odd
An odd total forces all three odd.
An even total can never equal 9, so half the problem disappears without a single number being tested.
2.OA.C.3Eliminate PossibilitiesThree shapes for the gcds
Only three shapes are possible.
Once every part is forced to be odd, a vague condition collapses into exactly three shapes that can be checked one at a time.
6.EE.B.5Make A Systematic ListThe prime 23 kills 3, 3, 3
Because 23 is prime, one shape dies.
A number hiding in two of the gcds would have to divide all of a, b, c, hence divide 23 — and 23 is far too big to fit inside a gcd of at most 7.
A number hiding in two of the gcds would have to divide all three of the numbers, hence divide their total.
▸ Why?
A common divisor of two numbers also divides everything built from them by adding.
▸ Why?
Every number has one prime recipe, so a prime too large to divide the total cannot hide anywhere.
Shape 1, 1, 7 gives 7, 7, 9
The first shape gives one triple.
Two odd multiples of 7 that must squeeze under 22 leave 7 and 7 as the only option.
4.OA.B.4Identify SubproblemsShape 1, 3, 5 gives 3, 5, 15
The second gives another.
Sitting inside two different gcds forces b to be a multiple of both 3 and 5, and 15 is the only odd multiple small enough to fit.
6.NS.B.4Identify SubproblemsAdd the two distinct values
Adding the two values gives 438.
Two shapes survived the elimination, so two values survive, and the answer is simply their sum.
6.EE.A.1Eliminate PossibilitiesCheck parity first: because the three gcds add to an odd 9, all of a, b, c must be odd, and that single fact shrinks a search over hundreds of triples down to three cases you can finish by hand.
- Name the three gcds
- An odd total forces all three odd
- Three shapes for the gcds
- The prime 23 kills 3, 3, 3
- Shape 1, 1, 7 gives 7, 7, 9
- Shape 1, 3, 5 gives 3, 5, 15
- Add the two distinct values