230769I know a special number which ends in 9. If I move the 9 to the front of the special number, then I get a new number which is exactly 4 times the special number. What is the special number?
230,769,230,769
230,769,230,769,230,769
etc.
230769I know a special number which ends in 9. If I move the 9 to the front of the special number, then I get a new number which is exactly 4 times the special number. What is the special number?
I this python script? I don't know it. I only knew BASIC and FORTRAN 77 at one time.x = 0 ;
while 9 * 10^((order(x,10)+1)) + x == 4 * sn
x = x + 1 ;
sn = 10 * x + 9
if 9 * 10^((order(x,10)+1)) + x == 4 * sn
disp(sn)
end
end
Don't talk to me or my son ever again.I just did
4 x 9 = 36.
4 x 6 + 3 = 27
4 x 7 + 2 = 30
4 x 0 + 3 = 03
4 x 3 + 0 = 12
4 x 2 + 1 = 09
Stop
Final number = 923076 (read last digit in lines above).
This is the same explanation as above but without all the words and the zeros !
They are. I'm a programmer and would just have looped from 1 up to a result where the result meets the criteria being the leftmost number of the result equals 9 and the rightmost number of the seed is 9. A mix of mathematics and string parsing.A perfect exposition of the fact that mathematicians are weird, inhabiting a world of their own. (Also, they are very smart)