2008 iTest Problems/Problem 47

Revision as of 19:33, 12 July 2018 by Rockmanex3 (talk | contribs) (Solution to Problem 47)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

Find $a + b + c$, where $a$, $b$, and $c$ are the hundreds, tens, and units digits of the six-digit integer $123abc$, which is a multiple of $990$.

Solution

Because $990 = 10 \cdot 9 \cdot 11$, the integer $123abc$ is a multiple of $10$, $9$, and $11$. That means $c = 0$, $6 + a + b \equiv 0 \pmod{9}$, and $2 - a + b \equiv 0 \pmod{11}$. The last two congruences can be rewritten as $a + b \equiv 3 \pmod{9}$ and $a - b \equiv 2 \pmod{11}$. After testing values of $a$ and $b$, we see that $a = 7$ and $b = 5$, so $a+b+c=\boxed{12}$.

See Also

2008 iTest (Problems)
Preceded by:
Problem 46
Followed by:
Problem 48
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100