1

How should I evaluate double sum of a number?

Example $$\sum_{i=0}^n\sum_{k=i+1}^n 4 $$

And how should I evaluate double sum of $$\sum_{i=0}^n\sum_{k=i+1}^n i^2 $$

Note:- I am completely new at these. I am good at single summations though. So if possible explain each and every of the step(I learn quickly). And if possible also provide some reference to further polish my skills.

mathnoob123
  • 1,373
  • By finding the explicit formula for $g(i):=\sum_{k=i+1}^n 4$ and then summing $\sum_{i=0}^n g(i)$. 2) By finding the explicit formula for $h(i):=\sum_{k=i+1}^n i^2$ and then summing $\sum_{i=0}^n h(i)$. Fairly easy both $h$ and $g$, but after you may want to know the formula for $\sum_{k=0}^n k^m$ when $m=1,2,3$.
  • –  Jul 31 '16 at 14:04