Summation rules and properties

1k Views Asked by At

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.

2

There are 2 best solutions below

0
On BEST ANSWER

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 $

0
On

Hint: $$\sum_{r=1}^{100}{1+2r+0.3^r}=\left(\sum_{r=1}^{100}{1}\right)+\left(\sum_{r=1}^{100}{2r}\right)+\left(\sum_{r=1}^{100}{0.3^r}\right)$$

Solution:

$$\sum_{r=1}^{100}{1+2r+0.3^r}=\left(\sum_{r=1}^{100}{1}\right)+\left(\sum_{r=1}^{100}{2r}\right)+\left(\sum_{r=1}^{100}{0.3^r}\right)$$ $$\left(\sum_{r=1}^{100}{1}\right)=100$$ $$\left(\sum_{r=1}^{100}{2r}\right)=2\sum_{r=1}^{100}{r}=100(101)=10100$$ Since $1+2+3+...+r=r(r+1)/2$ $$\left(\sum_{r=1}^{100}{0.3^r}\right)=\frac{1-0.3^{100}}{1-0.3}$$ The sum is about $10201.428$