(in decimal) contains the digit . When the zero is removed, the resulting number is exactly . What is the value of ?
A three-digit numberNote: The number may contain more than one zero. The number may not begin with a zero.
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.
As the problem image shows, there are three cases:
But this is not even a valid case, as a three-digit number cannot begin with a zero.
This is the same as dividing by 1 0 , so the number we get will be 1 0 N . If 1 0 N = 9 N , we need to have 9 N = 1 0 N , or N = 0 , not a three-digit number.
Let the number be a 0 b , so after removing the zero we get a b . Thus:
a 0 b = 9 ⋅ a b
1 0 0 a + b = 9 ( 1 0 a + b )
1 0 0 a + b = 9 0 a + 9 b
1 0 a = 8 b
5 a = 4 b
If b = 0 , then a = 0 too, which gives the number a 0 b = 0 0 0 = 0 , not a three-digit number too. So b > 0 . But since b is a decimal digit, it must be less than 1 0 .
Finally, as a , b are integers, we need 5 to divide 4 b . Since 4 is not divisible by 5 , we need to have 5 to divide b . Thus b is an integer divisible by 5 that lies in the range [ 1 , 9 ] ; the only possibility is b = 5 , which causes a = 4 and N = a 0 b = 4 0 5 . It can be easily verified that the number works.
Another way is by programming, although clearly it's not an intended solution for a math problem and is rather hard with various conversions between integers and strings. Here's a Python solution: