Saturday, February 10, 2018

inequality - Proof by induction that left(sumnk=1kright)2gesumnk=1k2



I am a bit new to logical induction, so I apologize if this question is a bit basic.



I tried proving this by induction:



(nk=1k)2nk=1k2




Starting with the base case n=1:



1212



Then to prove that P(n)P(n+1):



(n+1k=1k)2n+1k=1k2
((n+1)nk=1k)2(n+1)2nk=1k2
(n+1)2(nk=1k)2(n+1)2nk=1k2




Since they're both multiplied by (n+1)2, it's easy to see that if (nk=1k)2nk=1k2, then (n+1)2(nk=1k)2(n+1)2nk=1k2. But if the were replaced with a , the proof would still be valid, even though it's demonstrably not true.



I can see that it would take strong induction would fix this problem, but if I didn't know by observation that (nk=1k)2nk=1k2 isn't true by observation, how would I know to use strong induction?


Answer



You're not quite on the right track. Your base case is just fine. For your induction step, suppose that (nk=1k)2nk=1k2. Note then that (n+1k=1k)2=((n+1)+nk=0k)2=(n+1)2+2(n+1)nk=1k+(nk=1k)2 and that n+1k=1k2=(n+1)2+nk=1k2. Can you get the rest of the way from there?



Alternately, you can proceed directly, noting that (nk=1k)2=(nk=1k)(nj=1j)=nk=1knj=1j=nk=1nj=1jk=nk=1(k2+nj=1,jkjk)=nk=1k2+nk=1nj=1,jkjknk=1k2.


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