-2

How can I use induction to prove that

$1^2+3^2+...+(2n+1)^2=\frac{(n+1)(2n+1)(2n+3)}{3}$ for non-negative integers $n$?

1 Answers1

2

HINT

Recall that proof by induction require two steps

1. Base case

  • we need to check that the statement is true for $n=1$

2. Induction step

  • assume $1^2+3^2+...+(2n+1)^2=\frac{(n+1)(2n+1)(2n+3)}{3}$ as hypotesis and by that try to prove that the following holds

$$1^2+3^2+...+(2n+1)^2+2[(n+1)+1]^2=\frac{[(n+1)+1][2(n+1)+1][2(n+1)+3]}{3}$$

user
  • 154,566