-5

Find the sum of the series $1^2+3^2+5^2+\cdots+(2n-1)^2$

It is a mathematical question and I can't get it answer. Can anyone help me with this question?

3 Answers3

2

Hint:

Notice We can write your sum as

$$ S = \sum_{i=1}^n (2i-1)^2 = \sum_i (4i^2 - 4i + 1) = 4 \sum_i i^2 - 4 \sum_i i + n$$

ILoveMath
  • 10,694
1

These formulas may help you: $$\sum\limits_{k=1}^{n} k^2=\frac {n (n+1)(2n+1)}{6} $$ $$\sum\limits_{k=1}^{n} k=\frac {n (n+1)}{2} $$ $$\sum\limits_{k=1}^{n} c=cn$$ Your result should then be something like $$\frac {(2n-1)2n (2n+1)}{6} $$

mxian
  • 2,019
0

Using finite calculus we can sum polynomials using what's called falling powers:

\begin{align} \sum_{x=0}^{n-1} (2x+1)^2 &= \sum_{x=0}^{n-1} (4x^2+4x+1) = \sum_{x=0}^{n-1} [4x(x-1) + 8x + 1] \\ &= \sum_{x=0}^{n-1} [4x^{\underline2} + 8x^{\underline1} + 1] = \left.\frac{4}{3}x^{\underline3}+4x^{\underline2}+x^{\underline1}\right|_{0}^{n} \\ &= \left.\frac{4}{3}x(x-1)(x-2)+4x(x-1)+x\right|_{0}^{n} \\ &= \frac{4}{3}n(n-1)(n-2)+4n(n-1)+n \\ &= \frac{n}{3}(4n^2-1). \end{align}

Frenzy Li
  • 3,685