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