AMC 10 · 2021 · #25
Grade 11 number-theoryPick an answer.
Searching all positive integers is hopeless head-on, so the whole solution rests on Tool #7 (Identify Subproblems): once f is rewritten as a product with one factor per prime, and the exponents of different primes can be chosen independently, the single global maximization splits into a separate tiny maximization for each prime. Tool #4 (Introduce a Variable) sets that up by naming the exponents a₁,a₂,… in the prime factorization. Tool #15 (Organize Information in More Ways) is the rewriting move itself — regrouping d(n)/∛(n) from "count over root" into "product of per-prime pieces". Tool #14 (Extreme Principle) converts "where is the peak?" into a comparison between consecutive exponents, which cubes into pure whole-number arithmetic. Tool #6 (Guess and Check) then runs that cheap test on p=2,3,5,7, and Tool #3 (Eliminate Possibilities) kills every prime from 11 upward in one stroke.
Count the divisors
Write the divisor count from the exponents.
Building a divisor is only a matter of deciding how many copies of each prime to keep, so the counts multiply.
Building a divisor is only a matter of deciding how many copies of each prime to keep, so the counts multiply.
▸ Why?
Every number has exactly one prime recipe, so a divisor is nothing but a choice of exponents.
▸ Why?
Those choices are made independently for each prime, so the numbers of options multiply.
Split into one factor per prime
It splits prime by prime.
The cube root of a product is the product of the cube roots, so each prime's contribution never tangles with another's.
11.N-RN.A.2Organize Information In More WaysMaximize each prime alone
Maximize each factor independently.
Independent positive factors in a product can each be pushed to their own peak without hurting the others.
9.A-SSE.A.2Identify SubproblemsTest whether one more pays
See whether one more copy pays.
Cubing the comparison trades an ugly cube-root question for a whole-number one that can be checked in a second.
8.EE.A.1Extreme PrincipleRun it on the small primes
Find the best exponent for each small prime.
Each prime's factor climbs for a while and then turns down, and the turning point is its best exponent.
9.F-IF.B.4Guess And CheckDiscard big primes and multiply
Multiplying and adding digits gives 9.
A brand-new prime doubles the divisor count but stretches the cube root by ∛(p), so it only earns its keep when p < 8.
6.EE.A.1Eliminate PossibilitiesBreak the function into one piece per prime, ask each prime "is one more copy worth it?", and the answers stop at 2³·3²·5·7=2520, whose digits add to 9.
- Count divisors from the exponents
- Split f into one factor per prime
- Maximize each prime's factor alone
- Test whether one more copy pays
- Run the test on the small primes
- Discard the large primes and multiply