c = 1 ∑ 1 0 b = 1 ∑ c a = 1 ∑ b a 2 = ?
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.
The summation may be simplified a bit using the result k = 1 ∑ n k ( k + 1 ) … ( k + r ) = r + 2 n ( n + 1 ) … ( n + r ) ( n + r + 1 ) .
Example: 6 b ( b + 1 ) ( 2 b + 1 ) = 3 b ( b + 1 ) ( b + 2 ) − 2 b ( b + 1 ) .
Sir , what is the x doing in 5 t h and 6 t h line of your solution ?
Same solution, but now I'm wondering if there is an elegant Combinatoric solution.
Sir, is there a way to calculate x = 1 ∑ n x i for any integral i
That's how I did but in more messy way .. coasted me 1 trial :)
=1+(1+(1+4))+(1+(1+4)+(1+4+9))+ …(1+(1+4)+...+(1+4+9+...+100))= 10×1+9×(1+4)+8×(1+4+9)+...+ 1×(1+4+9+ …+100)= 1×(10+9+8+...+1)+4×(9+8+7+...+1)+ …+100×1=1×10×11/2+4×9×10/2+...+ 100×1×2/2=55+180+324+448+525+ 540+490+384+243+100=235+772+ 1065+874+343=1109+1065+1115=3289
s:=0;
FOR c:=1 TO 10 DO
FOR b:=1 TO c DO
FOR a:=1 TO b DO
s:=s+SQR(a);
Just a simple routine, s = 3289.
In python:
1 |
|
Problem Loading...
Note Loading...
Set Loading...
Let the sum of the expression be S . Then we have:
S = c = 1 ∑ 1 0 b = 1 ∑ c a = 1 ∑ b a 2 = c = 1 ∑ 1 0 b = 1 ∑ c 6 b ( b + 1 ) ( 2 b + 1 ) = c = 1 ∑ 1 0 b = 1 ∑ c 6 2 b 3 + 3 b 2 + b = c = 1 ∑ 1 0 6 1 ( 2 ( 2 c ( c + 1 ) ) 2 + 6 3 c ( c + 1 ) ( 2 c + 1 ) + 2 c ( c + 1 ) ) = 1 2 1 c = 1 ∑ 1 0 ( c 4 + 2 c 3 + c 2 + 2 c 3 + 3 c 2 + c + c 2 + c ) = 1 2 1 c = 1 ∑ 1 0 ( c 4 + 4 c 3 + 5 c 2 + 2 c ) = 1 2 1 ( 3 0 7 5 9 9 9 0 + 4 ( 2 1 0 ( 1 1 ) ) 2 + 6 5 ( 1 0 ) ( 1 1 ) ( 2 1 ) + 2 2 ( 1 0 ) ( 1 1 ) ) = 1 2 1 ( 2 5 3 3 3 + 1 2 1 0 0 + 1 9 2 5 + 1 1 0 ) = 3 2 8 9 [ k = 1 ∑ n k 2 = 6 n ( n + 1 ) ( 2 n + 1 ) ] [ k = 1 ∑ n k 3 = ( 2 n ( n + 1 ) ) 2 ] [ k = 1 ∑ n k = 2 n ( n + 1 ) ] [ k = 1 ∑ n k 4 = 3 0 6 n 5 + 1 5 n 4 + 1 0 n 3 − n ]