How many zeroes can be found in the square of 999,999,999,999,999,999,999,999,999,999?
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.
9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 = 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 2 (wrote it manually)
this comes from a beautiful sequence.
i.e let their be n 9s in the number . then their will be exactly ( n - 1) 9s and 0s in it's square.
In this case it is 30-1 =29
We rewrite the string of 30 9's as 1 0 3 0 − 1 . Then ( 1 0 3 0 − 1 ) 2 = 1 0 6 0 − 2 ∗ 1 0 3 0 + 1 , and we can see that the 29 digits preceding the very last digit are all 0's, while everything else is not. Thus, the answer is 29.
Best Logical Approach ! Good Work ! Me too Solved in the same way !
Sir Idol!!!! :)) hehehe..
Problem Loading...
Note Loading...
Set Loading...
This one again can be solved by induction.
9 2 9 9 2 9 9 9 2 9 9 9 9 2 9 9 9 9 9 2 = 8 1 = 9 8 0 1 = 9 9 8 0 0 1 = 9 9 9 8 0 0 0 1 = 9 9 9 9 8 0 0 0 0 1
It can be seen that the number of zeros in a square of a n -digit string of 9 is n − 1 . Therefore, the answer is 3 0 − 1 = 2 9 .