

InterviewSolution
1. |
Find the number of 4-digit numbers (in base 10) having non zero digits and which are divisible by 4 but not by 8. |
Answer» Explanation: We divide the even 4-digit numbers having non-zero digits into 4 classes: those ending in 2,4,6,8. (A) Suppose a 4-digit number ends in 2. Then the second right digit must be odd in order to be divisible by 4. Thus the last 2 digits must be of the form 12, 32, 52, 72 or 92. If a number ends in 12, 52, or 92, then the previous digit must be even in order not to be divisible by 8 and w have 4 admissible even digits. Now the left most digit of such a 4-digit number can be any non-zero digit and there are 9 such ways, and we get 9x4x3 = 108 such numbers. If a number ends in 32 or 72, then the previous digit must be odd in order not to be divisible by 8 and we have 5 admissible odd digits. Here again the left most digit of such a 4-digit number can be any non-zero digit and there are 9 such ways,and we get 9x5x2=90 such numbers. Thus the number of 4- digit numbers having non-zero digits, ending in 2,divisible by 4 but not by 8 is 108 + 90 = 198. (B) If the number ends in 4, then the previous digit must be even for divisibility by 4. Thus the last two digits must be of the form 24, 44, 54, 84. If we take numbers ending with 24 and 64, then the previous digit must be odd for non-divisibility by 8 and the left most digit can be any non-zero digit. Here we get 952=90 such numbers. If the last two digits are of the form 44 ant 84 ,then previous digit must be even for non-divisibility by 8. And the left most digit Can be take 9 possible values. We thus get 9 x 4 x 2 = 72 numbers. Thus the admissible numbers ending in 4 is 90+72=162. (C) If a number ends with 6 , then the last two digits must be of the form 16, 36, 56, 76, 96. For numbers ending with 16, 56, 76, the previous digit must be odd. For numbers ending with 36, 76, the previous digit must be even. Thus we get here (9 x 5 x 3)(9 x 4 x 2) = 135 + 72 = 207 numbers. (D) If a numbers ends with 8, then the last two digits must be of the form 28,48,68,88. For numbers ending with 28,68, the previous digit must be even. For numbers ending with 48,88, the previous digit must be odd. Thus we get (9 x 4 x 2) + (9 x 5 x 2) = 72 + 90 = 162 numbers . Thus the number of 4-digit numbers, having non-zero digits. and divisible by 4 but not by 8 is 198 + 162 + 207 + 162 = 729. Alternative Solution: If we take any four consecutive even numbers and divide them by 8, we get remainders 0, 2, 4, 6 in some order. Thus there is only one number of the form 8k + 4 among them which is divisible by 4 but not by 8. Hence we take four even consecutive numbers 1000a + 100b + 10c + 2, 1000a + 100b + 10c + 4, 1000a + 100b + 10c + 6, 1000a + 100b + 10c + 8, There is exactly one among these four which is divisible by 4 but not by 8. Now we can divide the set of all 4-digit even numbers with nonzero digits into groups of 4 such consecutive even numbers with a, b, c nonzero. And in each group, there is exactly one number which is divisible by 4 but not by 8 . The number of such groups is precisely equal to 9x9x9 =729, since we can vary a, b, c in the set {1, 2, 3, 4, 5, 6, 7, 8, 9,}. |
|