AMC 10 · 2022 · #4

Grade 6 number-theory
lcmgcdprime-factorizationdigit-sum systematic-enumerationcasework ↑ Prerequisites: prime-factorization
📏 Medium solution 💡 2 insights
Problem
A positive integer satisfies two conditions: its least common multiple with 18 is 180, and its greatest common divisor with 45 is 15. Find that number and add up its digits.

Pick an answer.

(A)
3
(B)
6
(C)
8
(D)
9
(E)
12
How to solve
Strategy Make a Systematic List

The two conditions each force a small, listable shape on n. Tool #2 (Systematic List): the GCD condition says 15 ∣ n, so write the multiples of 15 up to 180 in order. That short list is the entire candidate pool. Tool #3 (Eliminate Possibilities): now run each candidate through the two original conditions and keep the one survivor. This avoids the prime-exponent algebra of the reference solution while still being rigorous, and shows the student exactly why exactly one n works.

1STEP 1

Narrow to multiples of fifteen

The gcd forces a multiple of fifteen.

n ∈ {15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180}
2STEP 2

Narrow to divisors of 180

The lcm forces a divisor of 180.

Survivors after n ∣ 180: {15, 30, 45, 60, 90, 180}
3STEP 3

Filter by the lcm

Check the lcm directly.

lcm(60,18)=180, lcm(180,18)=180
4STEP 4

Filter by the gcd

Check the gcd too.

gcd(60,45)=15 ✓, gcd(180,45)=45 ✗
5STEP 5

Add the digits

Adding the digits gives 6.

6 + 0 = 6 → (B)
Answer
6
Verify n=60 against both original conditions: lcm(60,18) = 180 ✓ and gcd(60,45) = 15 ✓. The digit sum 6+0=6 matches choice (B), and the other choices 3, 8, 9, 12 correspond to digit sums of n=30, 35/53, 45/54/63, 39/48/57/75/84/93 — none of which simultaneously satisfy both original constraints (e.g. 30 fails because lcm(30,18)=90 not 180).
💡Key takeaway

This AMC 12 problem only needs Grade 6 LCM and GCD reasoning you already know — list multiples of 15, keep the ones that divide 180, and check which one gives LCM 180 and GCD 15; that is n=60, with digit sum 6.