Solving summations by upper bound - lower bound + 1

441 Views Asked by At

I’ve seen many different summations that are solved by the upper bound minus the lower bound plus one.

For example:

$$ \sum_{i=1}^{n} {1} = n-1+1 $$

May I always resolve summations in this way or are there any exceptions/restrictions?