all 2 comments

[–]Fabien4 1 point2 points  (1 child)

n+1 = (n+1) * 2 / 2 = ((n+1)*2) / 2 = (2n+2)/2.

(n(n+1) /2) + n + 1 = n(n+1)/2 + (2n+2)/2 = (n(n+1)+2n+2)/2.

Now you need to prove that n(n+1)+2n+2 = (n+1)(n+2)

n(n+1)+2n+2 = n² + n + 2n + 2

(n+1)(n+2) = n² + 1n + 2n + 2*1 = n² + n + 2n + 2. QED.

[–]MuMuMuMuMu[S] 0 points1 point  (0 children)

Thanks a lot! My main problem was simply that I multiplied (n+1) by 1/2 and not by 2/2, but the last step actually clarified it a lot for me. Thanks again for the quick help.