1

How can we rearrange $$ \sum \frac{(-1)^n}{n} $$ to get the sum 1 I know we know the alternation of sum by$$\frac{1}{2}\log{k}$$ Edit:sorry forgot to include $$k=a/b $$ a is number of positive terms taken

b is number of negative terms taken

If we use above formula $$ 1=\log(2)+(1/2)\log(k)$$ We get $k=e^2/4$ I am not sure what taking e^2 terms mean

1 Answers1

0

Here's how you can get any desired sum $S$:

  • Add up enough odd terms until the first time you exceed $S$
  • Subtract enough even terms until you go below $S$
  • Add more odd terms until you exceed $S$ again
  • Subtract more even terms until you go below $S$ again

If you want $S =1$ specifically, here's what that looks like:

  • $1 + \frac{1}{3} > 1$
  • $1 + \frac{1}{3} - \frac{1}{2} < 1$
  • $1 + \frac{1}{3} - \frac{1}{2} + \frac{1}{5} > 1$
  • $1 + \frac{1}{3} - \frac{1}{2} + \frac{1}{5} - \frac{1}{4} < 1,$

and so on forever.

  • Does it follow any certain pattern for terms? – unknown user Jul 27 '23 at 11:37
  • A pattern could be constructed based on the algorithm given above, but it would most likely be somewhat messy and unintuitive. Additionally, this rearrangement is not unique; there are many different ways to change the order of the positive and negative terms to get a sum of $S = 1$ (or any other desired sum). – Rivers McForge Jul 28 '23 at 15:34