Wednesday, June 29, 2016

discrete mathematics - Proving the sum of the first n natural numbers by induction


I am currently studying proving by induction but I am faced with a problem.


I need to solve by induction the following question.


1+2+3++n=12n(n+1)


for all n>1.


Any help on how to solve this would be appreciated.



This is what I have done so far.


Show truth for N=1



Left Hand Side = 1


Right Hand Side = 12(1)(1+1)=1


Suppose truth for N=k


1+2+3+...+k=12k(k+1)


Proof that the equation is true for N=k+1


1+2+3+...+k+(k+1)


Which is Equal To


12k(k+1)+(k+1)


This is where I'm stuck, I don't know what else to do. The answer should be:


12(k+1)(k+1+1)



Which is equal to:


12(k+1)(k+2)


Right?


By the way sorry about the formatting, I'm still new.


Answer



Basic algebra is what's causing the problems: you reached the point


12K(K+1)+(K+1)()


Now just factor out the red terms:


()=(K+1)(12K+1)=(K+1)(K+22)=12(K+1)(K+2)


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...