There is a positive integer a b c d such that 4 × a b c d = d c b a . Find the digital sum of that integer.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We are given
\(\begin{array} {} & a & b & c & d \\ \times & & & & 4 \\ \hline & d & c & b & a \end{array} \)
Since d c b a is a multiple of 4, a can only be 0, 2, 4, 6, 8. Obviously a < 3 , else a b c d × 4 would have 5 digits. Since a = 0 , a must be 2. Now the leading d of d c b a can only be 8 or 9 depending if there is a carry-forward of 1 from behind. But it is obvious that d = 8 because 8 × 4 = 3 2 where the end 2 is a . And we have:
\(\begin{array} {} & 2 & b & c & 8 \\ \times & & & _{\color{red}3} & 4 \\ \hline & 8 & c & b & 2 \end{array} \), where the red 3 is a carry-forward.
From the third column, we get 4 c + 3 ≡ b (mod 10) , this means that b is odd. Again b < 3 , else the leading d of d c b a is not 8. So b = 1 and 4 c + 3 ≡ 1 (mod 10) ⟹ c = 2 or 7. And c = 7 fits the bill because:
\(\begin{array} {} & 2 & 1 & 7 & 8 \\ \times & & _{\color{red}3} & _{\color{red}3} & 4 \\ \hline & 8 & 7 & 1 & 2 \end{array} \)
Therefore, a + b + c + d = 2 + 1 + 7 + 8 = 1 8 .
Problem Loading...
Note Loading...
Set Loading...
Let N = a b c d . Recall that N ≡ a + b + c + d m o d 9 . Since 4 N ≡ d + c + b + a m o d 9 , it must be that 4 N ≡ N m o d 9 . This in turn implies that one of the following must be true N N N ≡ 0 m o d 9 ≡ 3 m o d 9 ≡ 6 m o d 9 In all cases, N is divisible by 3 . Thus the digital sum is also divisible by 3. 18 is the only answer that is divisible by 3.