The sum of the squares of the first n odd natural numbers

What is the sum of the squares of the first n odd natural numbers?

The answer is:

$$\sum_{k=1}^{k=n} (2k-1)^2=1^2+3^2+5^2+...+(2n-1)^2=\frac{n(2n-1)(2n+1)}{3}$$

Proof 1:

We will use what we know from this:
The sum of the squares of the first n natural numbers

Let

$$S_{n,2}=\sum_{k=1}^{k=n}k^2=1^2+2^2+3^2+....+(n-1)^2+n^2=\frac{n(n+1)(2n+1)}{6}$$

We have

$$S_{2n,2}=\sum_{k=1}^{k=2n}k^2=1^2+2^2+3^2+....+(2n-1)^2+(2n)^2=\frac{2n(2n+1)(4n+1)}{6}$$

We want to find

$$S_{odd,n,2}=\sum_{k=1}^{k=n}(2k-1)^2=1^2+3^2+5^2+...+(2n-1)^2=$$
$$1^2+2^2+3^2+....+(2n-1)^2+(2n)^2-(2^2+4^2+6^2+...+(2n)^2)=S_{2n,2}-4S_{n,2}=$$
$$\frac{2n(2n+1)(4n+1)}{6}-4\frac{n(n+1)(2n+1)}{6}=\frac{2n(2n+1)(2n-1)}{6}=\frac{n(2n-1)(2n+1)}{3}$$

Proof 2 - Induction proof

1) For n = 1 it's true.

2) Let's consider that is true for n, and let's prove it for n+1.

$$\frac{n(2n-1)(2n+1)}{3}+(2n+1)^2=\frac{(2n+1)(2n^2-n+6n+3)}{3}=$$
$$=\frac{(2n-1)(2n^2+5n+3)}{3}=\frac{(n+1)(2n+1)(2n+3)}{3}$$
Average: 4.8 (30 votes)

Comments

The induction Proof

Dear Structure,
You started the proof with n=1; this implies that n-1=0.
You then assumed n=n, implying that n-n=0. n-n=0 is true but in this case it conveys no useful information.
It would have been better at this stage to assume n=k, (k different from 1) then proceed to show for n+1= k+1 because n+1=k+1 implies n=k or n-k=0.

Agreed?
MOE

Missing parentheses?

Hi,

Shouldn't the last terms of S(2n, 2) read (2n)^2 instead of 2n^2 ? Same comment then applies to 2nd line of "We want to find section".

Otherwise I don't see how you can factor out the 4 to get 4 * S(n, 2)

Best regards.

Thanks for your comments

We shall correct the errors.

Best regards

Back to top