0
$\begingroup$

Induction for $1^2+3^2+5^2+...+(2n-1)^2= \binom{2n+1}{3}$.

I am stuck... This is what I have so far... Base case: $n=1, 1=\binom{2n+1}{3}\rightarrow 1=1$.

Inductive step: Assume $n=k$ is true and show $n=k+1$ holds.

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

...

  • 0
    Well... can your prove $4k^2 = \frac{(2k+2)!}{(2k-1)!3!} - \frac{(2k+1)!}{(2k-2)!3!}$? Try putting them over a common denominator? $\frac{(2k+1)! - (2k+1)!(2k-1)}{(2k-1)!3!}$?2017-01-27
  • 1
    You need to be careful. Your line $$1^2+3^2+...+(2n-1)^2+(2n+1-1)^2$$ should read $$1^2+3^2+...+(2n-1)^2+(2(n+1)-1)^2$$ which is equal to $$1^2+3^2+...+(2n-1)^2+(2n+2-1)^2$$2017-01-27

1 Answers 1

1

$$[1^2 + \cdots + (2k-1)^2]+ (2(k+1)-1)^2=\binom{2k+1}{3} + (2k+1)^2=\frac{(2k+1)(2k)(2k-1) + 24k^2 + 24k + 6}{6}=\frac{8k^3 + 24k^2+22k+6}{6}=\frac{(2k+3)(2k+2)(2k+1)}{6}=\binom{2(k+1)+1}{3}.$$

  • 0
    Thank you for the help. I am confused how to simplify the n choose k into something helpful. I looked up that it turns into an expression with factorials but is that helpful for this problem?2017-01-27
  • 1
    @Math4Life Yes, you can simplify and get on the upper side a multiplication of decreasing numbers starting from the number on top, which has the number of bottom terms. On the bottom side you have $k!$. For example $\binom{7}{3}=\frac{7*6*5}{3!}$.2017-01-27
  • 1
    Thank you so much. I appreciate the help. I think I see it now. Writing it up shortly on paper for myself :)2017-01-27
  • 0
    I imagine there should be an intuitive combinatorial argument, but this is all I could find: http://oeis.org/A0004472017-01-27