8 × k number of 8’s 8 8 8 8 8 … 8
If the sum of digits of the number above equals to 1000, find the value of k .
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.
8 ∗ 8 = 6 4
8 ∗ 8 8 = 7 0 4
8 ∗ 8 8 8 = 7 1 0 4
8 ∗ 8 8 8 8 = 7 1 1 0 4
8 ∗ 8 8 8 8 8 = 7 1 1 1 0 4
so it appears for k > 2 the pattern is 7 , followed by ( k − 2 ) 1 's, then a 0 and a 4 .
So from this we get that for k > 2 the sod is
7 + ( k − 2 ) ∗ 1 + 0 + 4 = k + 9
so if we want
k + 9 = 1 0 0 0
k = 9 9 1
How do you know the pattern holds for all such integers?
To the challenge master : The given logic is very obvious.
Problem Loading...
Note Loading...
Set Loading...
8 ∗ ( 8 ∗ 1 0 n + 8 ∗ 1 0 n − 1 + . . . + 8 ∗ 1 0 + 8 ∗ 1 ) 6 4 ∗ 1 0 n + 6 4 ∗ 1 0 n − 1 + . . . + 6 4 ∗ 1 0 + 6 4 ∗ 1 )
Here we can see that after the first two additions we'll always have a pair of 6 and 4 with 1 as a carry. This addition will continue until the last one where we'll have 6+1 = 7. The sum of the digits is: 7 + ( k − 2 ) ∗ 1 + 4 = 9 + k 9 + k = 1 0 0 0 = > k = 9 9 1