How can I get a closed form from a summation like this?
$$ \sum_{j=i}^{n} {j} $$
I don’t know how to proceed since the base of the summation is a variable.
How can I get a closed form from a summation like this?
$$ \sum_{j=i}^{n} {j} $$
I don’t know how to proceed since the base of the summation is a variable.
It's not a variable, you just start with $i$ rather than 1, so you get $i + (i+1) + \ldots n$, which is of course $\sum_{j=1}^{n}j - \sum_{j=1}^{i-1} j$. Can you handle from here?