1

I need to find the sum of this series:

$1^3$, $-2^3$, $3^3$, $-4^3$, ... ,$2n^3$

so I've split that up into:

$\sum_{r = 1}^n (2r-1)^3 - \sum_{r = 1}^n (2r)^3$

So all I need is how to find: $\sum_{r = 1}^n (2r-1)^3$

Kolmin
  • 4,083

2 Answers2

2

HINT: notice $$\sum_{r=1}^{n}(2r-1)^3$$ $$=\sum_{r=1}^{n}\left((2r)^2-(1)^3-3(2r)(1)(2r-1)\right)$$ $$=\sum_{r=1}^{n}\left(8r^3-12r^2+6r-1\right)$$ $$=8\sum_{r=1}^{n}r^3-12\sum_{r=1}^{n}r^2+6\sum_{r=1}^{n}r-\sum_{r=1}^{n}1$$ $$=8\left(\frac{n(n+1)}{2}\right)^2-12\left(\frac{n(n+1)(2n+1)}{6}\right)+6\left(\frac{n(n+1)}{2}\right)-n$$ You can solve further by simplifying

0

Hint : The required(original one i.e. $1^3 - 2^3 + 3^3 - ... - (2n)^3$) sum is $\sum_{r = 1}^{2n} r^3 - 16\sum_{r = 1}^n r^3.$ Use the formula to calculate the sum of $1^{st} n$ cubes.

Ojas
  • 2,146