AMC 10 · 2021 · #12

Grade 6 number-theory
divisor-sumprime-factorizationsequences-geometricfraction-arithmetic identify-subproblemspattern-recognition ↑ Prerequisites: divisor-sumprime-factorization
📏 Medium solution 💡 3 insights
Problem
For a positive integer, add up every one of its positive divisors and divide that total by the number itself. Compute the difference of this value at two particular numbers. Both one and the number itself count as divisors.

Pick an answer.

(A)
$\frac{1}{768}$
(B)
$\frac{1}{192}$
(C)
1
(D)
$\frac{4}{3}$
(E)
$\frac{8}{3}$
How to solve
Strategy Identify Subproblems

Listing all 18 divisors of 768 and all 16 divisors of 384 by hand and adding them is slow and error-prone. The shortcut is to rewrite each number in prime-power form. Both are a power of 2 times 3, so every divisor is 2^a or 2^a × 3, and the whole divisor sum factors into (a chunk of powers of 2) times (1 + 3). That splits one long addition into two short ones, and the powers of 2 add to a number that is one less than the next power of 2. After that only a subtraction of two fractions remains. A second pass, viewing f(n) as a sum of reciprocals of divisors, checks the result from a completely different angle.

1STEP 1

Rewrite both numbers with primes

Rewrite both with primes.

768 = 2⁸ · 3, 384 = 2⁷ · 3
2STEP 2

Describe every divisor at once

Describe every divisor at once.

d ∣ 2⁸ · 3 ⇔ d = 2^a · 3^b, 0 ≤ a ≤ 8, b ∈ {0, 1}
3STEP 3

Factor the divisor sum into a product

The divisor sum factors into a product.

σ(768) = (1 + 2 + … + 256)(1 + 3) = 511 · 4 = 2044, σ(384) = (1 + 2 + … + 128)(1 + 3) = 255 · 4 = 1020
4STEP 4

Build the two fractions

Build the two fractions.

f(768) = 2044/768 = 511/192, f(384) = 1020/384 = 510/192
5STEP 5

Subtract the matched fractions

With matched denominators the gap is tiny.

f(768) - f(384) = 511/192 - 510/192 = 1/192
6STEP 6

Check it with reciprocals of divisors

Checking with reciprocals confirms one over one hundred ninety-two.

f(n) = Σ_d ∣ n 1/d, f(768) - f(384) = 1/256 + 1/768 = 4/768 = 1/192
Answer
1/192
The result is a tiny positive number, which is exactly what the structure predicts. The divisor list of 768 contains all of 384's divisors plus two extras, so the difference must be positive, and the two extras, 256 and 768, are the largest divisors, so their reciprocals are tiny. That alone rules out 1, 4/3, and 8/3 without any arithmetic. Numerically f(768) = 511/192 and f(384) = 85/32 are about 2.661 and 2.656, a gap of roughly 0.005, and 1/192 is about 0.0052. The trap choice 1/768 is what a solver gets by remembering only the extra divisor 768 and forgetting 256, whose reciprocal contributes the other 3/768.
💡Key takeaway

Write the number as a power of 2 times 3, and its divisor sum factors into two short sums; dividing by the number turns divisors into reciprocals, so 768 beats 384 by only the reciprocals of the two divisors it gains.

  • Rewrite both numbers with primes
  • Describe every divisor at once
  • Factor the divisor sum into a product
  • Build the two fractions
  • Subtract the matched fractions
  • Check it with reciprocals of divisors