If ( 2 a ) ( 9 b ) = 2 a 9 b , where 2 a 9 b is a four digit number with a and b as the hundreds and ones digits, respectively, the value of a + b is:
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 note that the number must be a multiple of 9. So a+b can only be 7 or 16 so that the sum of digits of the number is a multiple of 9. a+b can't be 16 as the minimum value of the number in that case is 65536 where a=16, b=0 which is a 5 digit number and other values of a and b for which a+b is 16 will give even bigger values. So a+b is obviously 7.
This is easier
You can also work with mod9
Log in to reply
( m o d 9 ) is probably bad since you have to include the extra step of 2 + a + 9 + b ≡ 0 ( m o d 9 ) → a + b ≡ − 2 ( m o d 9 )
Your method is a lot easier !
I did the same
How did you find out that 2a9b is multiple of 9?
Log in to reply
2a9b is a multiple of 9 because 2a9b =( 2 a )( 9 b ) - from the question, and any product of 9 b is a multiple of 9. For similar reasons, 2a9b is also even.
Since 9 4 > 3 0 0 0 , b < 4 . Moreover, b must be even because there is no power of 9 of the given form. Also, b can't be zero because the number does not contain factors 5. This leaves b = 2 , 9 b = 8 1 .
Now we know that the calculation is 2 a ⋅ . . . 1 = . . . 2 , which shows that 2 a ends in the digit 2. Candidates are 2 1 = 2 (too small), 2 5 = 3 2 (just right), or 2 9 = 5 1 2 (too large).
Thus a + b = 5 + 2 = 7 .
Problem Loading...
Note Loading...
Set Loading...
Obviously neither a nor b can be large because the right-hand side is bounded above by 3 0 0 0 and the left-hand side grows exponentially. Observe that the only powers of 9 to consider are 9 0 = 1 , 9 1 = 9 , 9 2 = 8 1 , and 9 3 = 7 2 9 . Since 9 4 = 6 5 6 1 , the number ( 2 a ) ( 9 b ) = 2 a 9 b cannot be a power of 9 , so a cannot be 0 and b must be even.
Now consider cases:
• b = 0 gives a contradiction since 2 a = 2 a 9 0 is impossible because no power of 2 ends in 0 .
• b = 2 gives ( 8 1 ) ( 2 a ) = 2 a 9 2 , so that 2 a 9 2 must be divisible by 9 . This requires that 2 + a + 9 + 2 = a + 1 3 be a multiple of 9 . The only value of a in the required interval [ 0 , 1 , 2 , 3 . . . 9 ] is a = 5 . In this case, 2 5 ⋅ 9 2 = 2 5 9 2 . Thus a = 5 , b = 2 and a + b = 7 .