0

I need to prove that

$$\sum_{k=0}^n (2k+1) = (n+1)^2$$

What I tried:

$$\sum_{k=0}^{n+1} (2k+1) = \sum_{k=0}^n (2k+1) + (n+1) = (n+1)^2 + (n+1)$$ $$(n+1)[(n+1)+1] = (n+1)(n+2)$$

Which is not equal to $((n+1)+1)^2 = (n+2)^2$

Any tip? Thanks in advance.

1 Answers1

0

Base case: at $n = 1$ we have $2(0) + 1 + 2(1) + 1 = 4 = (1+1)^2$.

Assume that the relation works up to $n$, then $$\sum_{k=0}^{n+1} (2k+1) = \sum_{k=0}^{n} (2k+1) + (2(n+1)+1) = (n+1)^2 + 2n + 3 = n^2 + 4n + 4 = (n+2)^2 = ((n+1)+1)^2$$ This completes the proof.

rka
  • 156