a = 1 ∑ 9 9 b = 1 ∑ a b 2 = ?
Note : You can use a calculator in the final step in your calculation.
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.
Even I did the same thing. Is there any simplified approach. Other than this?
Log in to reply
I do not think there is any. But that is only my feeling based on the fact that this is the only approach I have seen for series.
Log in to reply
Actually I made this formula myself, as it was easy to see the common square in each consecutive sum. So, i thought that there might be some other tech.Happy to hear that its the only approach :)
The above expression can be represented by n = 1 ∑ 9 9 k = 1 ∑ n k 2 .
And k = 1 ∑ n k 2 = 6 n ( n + 1 ) ( 2 n + 1 ) .
Thus,
n = 1 ∑ 9 9 k = 1 ∑ n k 2 = = = = = = = n = 1 ∑ 9 9 6 n ( n + 1 ) ( 2 n + 1 ) n = 1 ∑ 9 9 6 2 n 3 + 3 n 2 + n n = 1 ∑ 9 9 ( 3 1 n 3 + 2 1 n 2 + 6 1 n ) 3 1 n = 1 ∑ 9 9 n 3 + 2 1 n = 1 ∑ 9 9 n 2 + 6 1 n = 1 ∑ 9 9 n 3 1 ( 2 9 9 ( 1 0 0 ) ) 2 + 2 1 ( 6 9 9 ( 1 0 0 ) ( 1 9 9 ) ) + 6 1 ( 2 9 9 ( 1 0 0 ) ) 3 1 ( 2 4 5 0 2 5 0 0 ) + 2 1 ( 3 2 8 3 5 0 ) + 6 1 ( 4 9 5 0 ) 8 1 6 7 5 0 0 + 1 6 4 1 7 5 + 8 2 5 = 8 3 3 2 5 0 0
Great use of colors. Neat work as usual. Keep it up Ikkyu!
You can simplify your work by applying what Niranjan did though.
That's what I did
Good solution!!!
Note that k = 1 ∑ n k ( k + 1 ) ( k + 2 ) … ( k + m ) = m + 2 k ( k + 1 ) ( k + 2 ) … ( k + m ) ( k + m + 1 )
Now k = 1 ∑ 9 9 m = 1 ∑ k m 2 = k = 1 ∑ 9 9 6 k ( k + 1 ) ( 2 k + 1 ) = 6 2 k = 1 ∑ 9 9 k ( k + 1 ) ( k + 2 ) − 6 3 k = 1 ∑ 9 9 k ( k + 1 ) = 6 2 4 9 9 ( 1 0 0 ) ( 1 0 1 ) ( 1 0 2 ) − 6 3 3 9 9 ( 1 0 0 ) ( 1 0 1 ) = 8 3 3 2 5 0 0
You can use the following code: s = 0 k = 100 For i = 1 To 99 kk = k - i s = s + kk * i ^ 2 Next i
and get s=8332500
Problem Loading...
Note Loading...
Set Loading...
1 2 + ( 1 2 + 2 2 ) + ( 1 2 + 2 2 + 3 2 ) + . . . . . . = 9 9 ∗ 1 2 + 9 8 ∗ 2 2 + 9 7 ∗ 3 2 + . . . + 1 ∗ 9 9 2 = 1 ∑ 9 9 ( 1 0 0 − n ) n 2 = 1 ∑ 9 9 ( 1 0 0 n 2 − n 3 ) = 1 0 0 ∗ 6 9 9 ∗ ( 9 9 + 1 ) ( 2 ∗ 9 9 + 1 ) − ( 2 9 9 ∗ ( 9 9 + 1 ) ) 2 8 3 3 2 5 0 0 .