$$\sum_{i = 1}^n (2i+3) = n(n+4)$$ for all n >= 1.
Was a homework problem that was given no solution. Was told last lines weren't correctly written. My attempt: Let P(n) = n(n+4) for all n >= 1 Basis Step: P(2) = 2(6) = 12 >= 1 Inductive Step: $$\sum_{(i=1}^{k+1} (k+1)(k+5)$$
= k(k+4) + (k+1) = $$k^2 + 4k + (k+1) $$ = $$k^2 + 5k+ 1 $$ :(k+1)(k+5) QED >= 1
Edit: The question is what would be the correct steps to solve it or fix what I have above so I know for my exam Friday.
First, show that this is true for $n=1$:
$\sum\limits_{i=1}^{1}2i+3=1(1+4)$
Second, assume that this is true for $n$:
$\sum\limits_{i=1}^{n}2i+3=n(n+4)$
Third, prove that this is true for $n+1$:
$\sum\limits_{i=1}^{n+1}2i+3=$
$\color\red{\sum\limits_{i=1}^{n}2i+3}+2(n+1)+3=$
$\color\red{n(n+4)}+2(n+1)+3=$
$n^2+6n+5=$
$(n+1)(n+5)=$
$(n+1)(n+1+4)$
Please note that the assumption is used only in the part marked red.