🇺🇸 AMC 8 ⇄ switch contest
1997 AJHSME

Problem 5

Problem 5 · 1997 AJHSME Medium
Number Theory digit-sumlisting

There are many two-digit multiples of 7, but only two of them have a digit sum of 10. The sum of these two multiples of 7 is

Show answer
Answer: A — 119.
Show hints
Hint 1 of 2
You have two conditions — 'multiple of 7' AND 'digits add to 10.' Pick whichever list is SHORTER to write out, then filter it by the other.
Still stuck? Show hint 2 →
Hint 2 of 2
When two conditions must both hold, generate the smaller set first and test it against the second condition.
Show solution
Approach: list the shorter set, filter by the other condition
  1. There are about thirteen two-digit multiples of 7, so walk through 14, 21, 28, … and keep only those whose digits sum to 10: that gives 28 (2+8) and 91 (9+1).
  2. Their sum is 28 + 91 = 119.
Another way — start from the digit-sum list instead:
  1. Two-digit numbers with digit sum 10 are quick to list: 19, 28, 37, 46, 55, 64, 73, 82, 91.
  2. Test each for divisibility by 7 — only 28 = 7×4 and 91 = 7×13 survive, so the sum is 28 + 91 = 119.
  3. Lesson: either list works; choosing the shorter condition to enumerate first saves time.
Mark: · log in to save