Wednesday, April 5, 2017

Proof by induction that frac1n+1+frac1n+2+cdots+frac12n=1frac12+cdots+frac12n1frac12n.


Prove that for any positive integer, 1n+1+1n+2++12n=(112)+(1314)++(12n112n).


I have tried using a proof by induction but do not know how to approach the series.


Note: This identity may be established by a clever algebraic manipulation, as seen here, but I am curious as to how an inductive proof might work.


Answer



For each n1, let S(n) denote the statement S(n):112+1314++12n112n=1n+1+1n+2++12n. Note that the left-hand side constitutes the first 2n1 terms of what is called the alternating harmonic series.


Base step (n=1): Notice that the left side of S(n) has denominators which range from 1 to 2n, whereas the denominators on the right range from n+1 to 2n. Thus, for n=1, the denominators on the left range from 1 to 2, whereas on the right, they range from 1+1=2 to 21=2; that is, there is only one term on the right. Consequently, S(1) say that 112=12, and this is true.



Inductive step: For some fixed k1, assume the inductive hypothesis S(k) S(k):112+1314++12k112k=1k+1+1k+2++12k to be true. We must then show that S(k+1) follows: S(k+1):112+1314++12k+112k+2LHS=1k+2+1k+3++12k+2RHS. Starting with the left-hand side of S(k+1) (and filling two more penultimate terms), LHS=112+1314++12k112k+12k+112k+2=1k+1+1k+2++12k+12k+112k+2=1k+2++12k+12k+1+1k+112k+2=1k+2++12k+12k+1+22k+212k+2=1k+2++12k+12k+1+12k+2=RHS, we see that the right-hand side of S(k+1) follows. This completes the inductive step S(k)S(k+1).


Hence, by mathematical induction, for all n1,S(n) is true.


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