I am having a hard time researching how to handle summations of functions with exponential growth or decay. I know that simple summations can be calculated as follows:
$$\sum_{i=1}^{n} i = \frac{n(n+1)}{2}$$
How do you approach problems of exponential decay or growth? Consider the following example:
$$\sum_{n=1}^{50} e^{-0.123(n)}$$
You can recognize your sum as a geometric sum which has the basic formula: $$ \sum_{n=0}^N r^n = \frac{r^{N+1} - 1}{r-1} $$ To apply this to your sum $$ \sum_{n=1}^{50} e^{-0.123(n)} $$ recognize that $e^{-0.123(n)} = (e^{-0.123})^n$ so your $r$ is $e^{-0.123}$.
Also your sum starts at $n=1$ while the formula starts the summation at $n=0$ so you need to adjust for this.