Tuesday, June 18, 2019

Basic Mathematical Induction


I'm not quite sure how to approach this question.


I need to prove that for n1


12+22+33++n2=16n(n+1)(2n+1)


Do I just plug 1 and see if 16(1)((1)+1)(2(1)+1)=12 ?


Answer



Well what we want to do with induction is to show that for the set S that satisfies our desired property, S=N. We can do this on the naturals by a very special property. Every as part of the Peano axioms, we know that xN, x has a successor also in N in the form s(x)=x+1. So if we can show that if the base natural 1 holds and that our property holds for an arbitrary x then it holds for its successor, we prove the property over the naturals. This works because if 1,x,s(x)S we can let 1 be our x and then we get that it holds for s(1) so it holds for s(s(1)) and so on.


So to the problem at hand. Let S={xN:12+22+...+x2=x(x+1)(2x+1)6}. First we show the base case 1S. So, 12=1=1(1+1)(21+1)6=66=1

therefore 1S.



Next we form our inductive hypothesis and assume that some natural kS which implies 12+22+...+k2=k(k+1)(2k+1)6. We will use this to make our inductive step and show k+1S. So,


12+22+...+k2+(k+1)2=k(k+1)(2k+1)6+(k+1)2=k(k+1)(2k+1)6+6(k+1)26=(k+1)[k(2k+1)+6(k+1)]6=(k+1)[2k2+k+6k+6)]6=(k+1)[2k2+7k+6)]6=(k+1)[(k+2)(2k+3)]6=(k+1)[(k+1+1)(2k+2+1)]6=(k+1)((k+1)+1)(2(k+1)+1)6

Which is what we trying to show!


Side note: I should probably conclude that we showed that when kS that k+1S which means that S=N.


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...