0

The question is asking to find the sum of a geometric series up to term n, where the first value of r is 1. The expression is $$ \sum_{r=1}^n \ 4r^3-3r^2+r$$. I am aware of the general formula for the sum of a geometric series, but don't know what to use as the common ratio - is there any way to figure out the common ratio from the equation?

1 Answers1

2

First, we use the identities:

$$\begin{align}&\sum_{i = 1}^{n}i^{3} = \bigg(\frac{n(n +1)}{2}\bigg)^{2} \\&\sum_{i = 1}^{n}i^{2} = \frac{n(n + 1)(2n + 1)}{6} \\&\sum_{i = 1}^{n}i = \frac{n(n + 1)}{2}\end{align}$$

These can be easily proved by induction. Then, for your sum we have:

$$\begin{align}\sum_{r=1}^{n}4r^{3}-3r^{2} + r&= 4\sum_{r = 1}^{n}r^{3}-3\sum_{r=1}^{n}r^{2}+\sum_{r=1}^{n}r \\&= n^{2}(n+1)^{2}-\frac{n(n+1)(2n+1)}{2}+\frac{n(n + 1)}{2} \\&=n^{2}(n + 1)^{2}-\frac{n(n + 1)(2n + 1 - 1)}{2} \\&= n^{2}(n + 1)^{2} - n^{2}(n + 1) \\&= \boxed{n^{4} + n^{3}}\end{align}$$

19aksh
  • 12,768
Joshua Wang
  • 6,103
  • If you are interested in how these identities are derived, see https://math.stackexchange.com/questions/155166/finite-sum-of-power. – Joshua Wang Jan 28 '21 at 02:46