I am trying to teach myself, but I am confused on one question. It says "for the following summation, give an equivalent equation without the summation:
$$\sum_{r=5}^n (2r + 4r^2) $$ where $i$ takes values from $5$ to $n$.
I am trying to teach myself, but I am confused on one question. It says "for the following summation, give an equivalent equation without the summation:
$$\sum_{r=5}^n (2r + 4r^2) $$ where $i$ takes values from $5$ to $n$.
HINT
Note that
$$\sum 2i+4i^2=2\sum i+4\sum i^2$$
and
$$\sum_5^n a_n=\sum_1^n a_n-\sum_1^4 a_n$$
then refer to the sum of powers formulas.
Refer also to the related How Are the Solutions for Finite Sums of Natural Numbers Derived?
Seems to be a high school level problem : $$\sum_{r=5}^{n}2r+r^2=2\sum_{r=5}^{n}r+\sum_{r=5}^{n}r^2 $$ $$=2\bigg(\sum_{r=1}^{n}r-\sum_{r=1}^{4}r\bigg)+\bigg(\sum_{r=1}^{n}r^2-\sum_{r=1}^{4}r^2\bigg)$$ $$=2\bigg(n-\frac{5\times4}{2}\bigg)+\bigg(\frac{(n^2+n)(2n+1)}{6}-9\frac{(4^2+4)}{6}\bigg)$$
solve it to get your answer.
confused on one question
The question implies that you must have seen something at least remotely similar in the past. What's different here, what did you try, and where did you get stuck? – dxiv Sep 19 '18 at 06:11