$$\sum\limits_{j=i}^{n} j = i + (i+1) + (i+2) + \cdots + (i+k)$$ note: above $(i+k) = n$ $$\\$$ now $$\sum\limits_{j=i}^{n} j = i \cdot(k+1) + \frac{(k+1)k}{2} = \frac{(k+1)(2i+k)}{2} $$ so my question is where does the $i \cdot (k+1)$ come from?? Also, $$\frac{(k+1)(2i+k)}{2} = \frac{(n-i+1)(2i+n-i)}{2} = \frac{(n-i+1)(n+i)}{2}$$ How does the $$\frac{(k+1)(2i+k)}{2} = \frac{(n-i+1)(2i+n-i)}{2} ??$$
2026-04-02 14:08:08.1775138888
evaluation of this sum?
35 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
The idea here is that each of the $k+1$ terms in your summation contain an $i$, so we can pull those out to get: $$ i + (i+1) + (i + 2) + \dots + (i + k) = (i + i + \dots + i) + (1 + 2 + \dots + k) $$ The first summation is just $i$, repeated $k+1$ times. The second summation is given by $\frac{k(k+1)}{2}$. For your second question, this is just the substitution $k = n-i$.
Alternatively, we could rewrite the sum as the following: $$ \sum_{j=i}^n j = \sum_{j = 0}^{n - i} (i + j) = \sum_{j = 0}^{n - i} i + \sum_{j = 0}^{n - i} j = i(n - i + 1) + \frac{(n-i)(n-i+1)}{2} $$ Note that this directly gives you the final answer.