AMC 10 · 2014 · #12

Grade 6 number-theory
prime-factorizationfactorsdivisor-count complementary-counting ↑ Prerequisites: prime-factorization
📏 Medium solution 💡 2 insights
Problem
The number 2,014,000,000 has many whole-number divisors; its largest divisor is the number itself. Find its fifth-largest divisor.

Pick an answer.

(A)
125, 875, 000
(B)
201, 400, 000
(C)
251, 750, 000
(D)
402, 800, 000
(E)
503, 500, 000

AMC 10 2014 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.

How to solve
Strategy Change Focus / Count the Complement

Listing the huge divisors of N from the top down is painful. Tool #16 (Change Focus) flips the problem: every divisor d of N pairs with a partner N/d, and their product is N. As d runs through the SMALLEST divisors 1, 2, 4, 5, …, the partners N/d run through the LARGEST divisors N, N/2, N/4, … in matching order. So the fifth-largest divisor is just N divided by the fifth-smallest divisor — a much easier target. Tool #7 (Identify Subproblems) handles the setup: prime-factor N so we know exactly which small numbers divide it. Tool #2 (Systematic List) then walks the smallest divisors in order to find the fifth one, after which a single division finishes the job.

1STEP 1

Flip largest to smallest

Divisors pair up as d · (N/d) = N, so the fifth-largest divisor is N divided by the fifth-smallest divisor.

d · N/d = N ⟹ (fifth-largest divisor) = N/(fifth-smallest divisor)
2STEP 2

Split off the powers of ten

N = 2014 × 1,000,000, and the six trailing zeros hand over 1,000,000 = 10⁶ = 2⁶ · 5⁶.

N = 2014 × 10⁶ = 2014 × 2⁶ · 5⁶
3STEP 3

Prime factorize N

2014 = 2 · 19 · 53, so N = 2⁷ · 5⁶ · 19 · 53 — its only primes are 2, 5, 19, 53, never 3 or 7.

N = 2 · 19 · 53 · 2⁶ · 5⁶ = 2⁷ · 5⁶ · 19 · 53
4STEP 4

List the five smallest divisors

With no 3 and no 7 available, the divisors start 1, 2, 4, 5, 8 — the fifth-smallest is 8.

1, 2, 4, 5, 8 → fifth-smallest divisor = 8
5STEP 5

Divide N by 8

Peeling off 2³ gives N/8 = 2⁴ · 5⁶ · 19 · 53 = 251,750,000, choice (C).

N/8 = (2⁷ · 5⁶ · 19 · 53)/2³ = 2⁴ · 5⁶ · 19 · 53 = 251,750,000 → (C)
Answer
251, 750, 000
Listing the largest divisors from the top confirms the answer: N (largest), then N/2 = 1,007,000,000, N/4 = 503,500,000 (choice E), N/5 = 402,800,000 (choice D), and N/8 = 251,750,000 (choice C). Notice choices (D) and (E) are the fourth- and third-largest divisors, so a hasty solver could slip into them — but the fifth-largest is (C). Multiplying back, 251,750,000 × 8 = 2,014,000,000 = N, so it truly is a divisor.
💡Key takeaway

The fifth-biggest divisor is just the number divided by the fifth-smallest divisor, because divisors always come in partner pairs that multiply to the whole.

  • Flip largest to smallest
  • Split off the powers of ten
  • Prime factorize N
  • List the five smallest divisors
  • Divide N by 8