Saturday, February 3, 2018

induction - Prove that a2nb2n is divisible by a+b






Prove that for all nZ, a2nb2n is divisible by a+b using induction.







I know that if a is divisible by b, then a=kb, where kZ. Here we have that a2nb2n=(a+b)k, with kZ.



For the base case I set n=1, so a2b2=(a+b)(ab)=(a+b)k, where k=abZ.



Now the inductive step (where I have doubts): a2nb2n=(a+b)ka2(n+1)b2(n+1)=(a+b)m,k,mZ.

We start from a2(n+1)b2(n+1). Then a2n+2b2n+2=(a+b)(a2n+1a2nb+a2n1b2a2b2n1ab2n+b2n+1),
so a2(n+1)b2(n+1)=(a+b)m, where m=a2n+1a2nb+a2n1b2a2b2n1ab2n+b2n+1Z.







I have two questions:




  1. Is the math in red a correct descomposition of a2(n+1)b2(n+1)?

  2. We have not used the inductive hypothesis. Could we use it?


Answer




The descomposition in red is correct. You did not use it because you could try this without induction, just with the factorization you used above. But you could have used it in the following way:



Since a2n+2b2n+2=a2n+2a2b2n+a2b2nb2n+2=a2(a2nb2n)+b2n(a2b2)=a2(a+b)k+b2n(ab)(a+b)=(a+b)


The assert is even true for n+1.


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