uman
What is the sum of all 3-digit positive integers such that all the digits of each of the number is even?
(A) 55,500
(B) 1300
(C) 44,400
(D) 247,275
(E) 54,400
Can you explain why each of 2,4,6,8 will appear 25 times? Sorry just not able to grasp it..
Here are the numbers that satisfy the condition:
{200, 202, 204, 206, 208} {220, 222, ..., 228} {240, 242, ..., 248} {260, 262, ..., 268} {280, 282, ..., 288} - total of 25 numbers, 5 in each of 5 groups of numbers
- The sum of the hundreds digits: 25 * 2
- The sum of the tens digits: 5 * (0 + 2 + 4 + 6 + 8)
- The sum of the units digits: 5 * (0 + 2 + 4 + 6 + 8)
{400, 402, 404, 406, 408} {420, 422, ..., 428} {440, 442, ..., 448} {460, 462, ..., 468} {480, 482, ..., 488} - total of 25 numbers, 5 in each of 5 groups of numbers
- The sum of the hundreds digits: 25 * 4
- The sum of the tens digits: 5 * (0 + 2 + 4 + 6 + 8)
- The sum of the units digits: 5 * (0 + 2 + 4 + 6 + 8)
{600, 602, 604, 606, 608} {620, 622, ..., 628} {640, 642, ..., 648} {660, 662, ..., 668} {680, 682, ..., 688} - total of 25 numbers, 5 in each of 5 groups of numbers
- The sum of the hundreds digits: 25 * 6
- The sum of the tens digits: 5 * (0 + 2 + 4 + 6 + 8)
- The sum of the units digits: 5 * (0 + 2 + 4 + 6 + 8)
{800, 802, 804, 806, 808} {820, 822, ..., 828} {840, 842, ..., 848} {860, 862, ..., 868} {880, 882, ..., 888} - total of 25 numbers, 5 in each of 5 groups of numbers
- The sum of the hundreds digits: 25 * 8
- The sum of the tens digits: 5 * (0 + 2 + 4 + 6 + 8)
- The sum of the units digits: 5 * (0 + 2 + 4 + 6 + 8)
__________________________________________
- The sum of the hundreds digits:
25 * 2 + 25 * 4 + 25 * 6 + 25 *8 = 25(2 + 4 + 6 + 8)
- The sum of the tens digits:
5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) = 20 * (0 + 2 + 4 + 6 + 8)
- The sum of the units digits:
5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) + 5 * (0 + 2 + 4 + 6 + 8) = 20 * (0 + 2 + 4 + 6 + 8)
Hope this helps.