I have a 6-digit positive integer which has 9 as its last digit. If I move its last digit directly to the front without shifting the other digits, then this new 6-digit number is 4 times the original one. Find out the first digit of the original number.
Don't use algebra. Try to find only the first digit without finding any other digits. You only need to apply your basic knowledge on numbers for that.
Inspiration : Moving the last digit of a number to the front by Vincent Delorenzo .
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.
A B C D E 9 × 4 = 9 A B C D E
One thing we know for certain is that A could be any integer from 0 to 9 . So, 4 times any digit cannot exceed 3 6 which is 4 × 9 .
We can deduce the following:
If we choose to rely on the premises above, the set of possibilities for A gets narrowed.
This leaves us with two possibilities ( 1 or 2 ):
4 × 1 = 4 ——— ( 1 )
4 × 2 = 8 ——— ( 2 )
The tens digit of 4 B adds with either of the products above to make 9 .
( 1 ) — 4 + 5 = 9
( 2 ) — 8 + 1 = 9
For option (1) to be valid, the tens digit of 4 B needs to be 5 . But since 3 6 is the maximum possible value of 4 B , the tens digit of 4 B cannot possibly be more than 3 . Thus, option (1) cannot be valid.
We are finally left with option (2). Here, the tens digit of 4 B is 1 (which is well within the range).
∴ A is 2 .