Calculate integer summation when lower bound is a variable

1.2k Views Asked by At

How do you calculate the following sum?

\begin{equation*} \sum_{i=k}^n i \end{equation*}

3

There are 3 best solutions below

0
On BEST ANSWER

$\sum_{i=k}^n i = \sum_{i=0}^n i - \sum_{i=0}^{k-1} i = \frac{1}{2} \left[ n(n+1) - (k-1)k \right]$

1
On

This is a special case for the formula for the sum of n terms in an arithmetic progression:

http://en.wikipedia.org/wiki/Arithmetic_progression

0
On