Proof my by mathematical induction $\sum_{i=1}^{n} \frac{(-1)^{i-1}}{i} > 0 $

78 Views Asked by At

I proved it true for the base case but have no idea how to implement the assumption that it's true for n=k when trying to prove for n=k+1.

Am i right in saying there would be two cases i.e. k is odd or even.

2

There are 2 best solutions below

0
On BEST ANSWER

You must only prove two base cases, the odd and the even: Let's suppose you already know that $S_k = \sum_{i=1}^k \frac{(-1)^{k-1}}{k}$ is positive for all $n\geq k \geq 1$. Then, if $n$ is even, obviously $S_{n+1}$ will be positive. On the other hand, if $n$ is odd,$$S_{n+1} = S_n -\frac{1}{n+1} = S_{n-1} +\left(\frac{1}{n} - \frac{1}{n+1}\right).$$

Which from your base in the odd case is clearly positive.

1
On

Hint : $\frac 1k-\frac 1{k+1}$ is always greater than zero.