I am trying to find the sum of this -
$$\sum_{r=1}^{100} ( 1 + 2r + 0.3^r ) $$
I know roughly how I am supposed to do. First I distribute the summation across the 3 values.
Then I got stuck $2r$ and $0.3^r$
Both are similar if I understand, so I will only ask for one of them ,
$\sum_{r=1}^{100} (2r)$
how am I suppose to use the property to solve this just like $\sum_{r=1}^{100} = 100(1) = 100 $
Am I right to say -
$\sum_{r=1}^{100} (2r) = 2(1)(100) $ ? But I doubt myself as the r value changes . So I think this is wrong.
You should try breaking up the summation into parts so that you can evaluate them easily
$\displaystyle \sum_{r=1}^{100} ( 1 + 2r + 0.3^r )$
$=\displaystyle \sum_{r=1}^{100}1+\sum_{r=1}^{100}2r+\sum_{r=1}^{100}(0.3)^r$
$\displaystyle = 100+2\sum_{r=1}^{100}r+\sum_{r=1}^{100}(0.3)^r$
$\displaystyle= 100+2\cdot\frac{100(101)}{2}+ \frac{1-(0.3)^{100}}{1-0.3}$
$=\displaystyle 100+10100+1.428 $
$=10201.4285$
EDIT:
You should look up geometric series to understand the summation of $(0,3)^r $