1 1 1 1 1 1 1 1 1 1 × × × × 1 1 1 1 1 1 1 1 1 1 = = = = 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Observe the equations above.
Hence, what is the value of
1 0 1’s 1 1 1 1 1 1 1 1 1 1 × 1 0 1’s 1 1 1 1 1 1 1 1 1 1 ?
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.
Well, actually the answer still fits the increasing decreasing pattern that we observed. We just have to remember to do the calculations in base 10.
IE 1 2 3 4 5 6 7 8 9 ( 1 0 ) 9 8 7 6 5 4 3 2 1 = 1 2 3 4 5 6 7 8 ( 1 0 ) 0 9 8 7 6 5 4 3 2 1 = 1 2 3 4 5 6 7 9 0 0 9 8 7 6 5 4 3 2 1 .
In the first number, we can't write 10 as 2 seperate digits, but must consider them together. This essentailly means that we're carry over of 1. Added to 9, this give 10 (again not 2 digits), but a carry over of 1. Added to 8, this gives 9.
This easily extends to multiplying more number of 1's together.
Great use of that recursion! +1
A fast way to solve the problem by observation is to consider that for 1 × 1 , the number of digits in the answer is 2 − 1 , for 1 1 × 1 1 , the number of digits in the answer is 4 − 1 , for 1 1 1 × 1 1 1 , the number of digits in the answer is 6 − 1 . So then, the answer to this problem by this pattern should have 19 digits, and only 1234567900987654321 had 19 digits, so that was most likely the correct answer (of course, my pattern needs a proof)
Problem Loading...
Note Loading...
Set Loading...
Consider:
\(\begin{array} {} a_1 = 1 & \Rightarrow a_1^2 = 1 \\ a_2 = 11 & \Rightarrow a_2^2 = 121 \\ a_3 = 111 & \Rightarrow a_3^2 = 12321 \\ a_4 = 1111 & \Rightarrow a_4^2 = 1234321 \\ ... & ... \\ a_9 = 111111111 & \Rightarrow a_9^2 = 12345678987654321 \end{array} \)
a 1 0 ⇒ a 1 0 2 = 1 0 a 9 + 1 = ( 1 0 a 9 + 1 ) 2 = 1 0 0 a 9 2 + 2 0 a 9 + 1
= = + + 1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 0 0 2 2 2 2 2 2 2 2 2 0 1 1 2 3 4 5 6 7 9 0 0 9 8 7 6 5 4 3 2 1