Let me know if any of my notation confuses you. Anyway, an infinite series can be said to either diverge or converge. For example, sum(n, 1, infinity, n) (or 1+2+3+...) grows without bound while sum(n, 1, infinity, 1/2^n) (or 1/2+1/4+1/8+...) converges to 1 as you add more and more terms.
If the sum(n, 1, infinity, a_n) converges but sum(n, 1, infinity, abs(a_n)) does not, it is said to be conditionally convergent. The problem with conditionally convergent series is that their limit can be changed to anything (including making them diverge) by rearranging the terms. This result is known as the Riemann series theorem. This is what you are doing in the following step:
Quote:Ln(2) = 1 - (1/2) + (1/3) - (1/4) + (1/5) .....
Ln(2) = (1 + 1/3 + 1/5 ....) - (1/2 + 1/4 + 1/6 ....)
The first series is conditionally convergent, but you still split it. Furthermore, neither of the two resulting series even converge. It is meaningless to take their difference in classical mathematics.