1

I don't understand index shifting/general rules for Summations.

$S_n := \frac{1}{1+n}+\frac{1}{1+(n+1)}+...+\frac{1}{2n}$.

Finding a Summation formula for this equals either:

$A(n):=\sum_{k=n}^{2n-1} \frac{1}{1+k}$ or $S(n):=\sum_{k=n+1}^{2n} \frac{1}{k}$

I already know the solution if we use
$S(n):=\sum_{k=n+1}^{2n} \frac{1}{k}$.

$S(n+1)=\sum_{k=n+2}^{2n+1} \frac{1}{k} = \sum_{k=n+1}^{2n} \frac{1}{k} + (\frac{1}{2n+2}+\frac{1}{2n+1}-\frac{1}{n+1})$

Can someone try to explain this soluition?

How would the change of indexes look like for this?

$A(n):=\sum_{k=n}^{2n-1} \frac{1}{1+k}$

$A(n+1) = \sum_{k=n+1}^{2n} \frac{1}{1+k} = \sum_{k=n}^{2n-1} \frac{1}{1+k} +( ???)$

Can someone give and try to explain his solution?

Lisa
  • 15

1 Answers1

2

If you're having trouble with the shift in summation you can put the "missing" step back in, which should help a little. Starting with your first example, we have: $$ A(n):= \sum_{k=n}^{2n-1} \frac{1}{1+k} = \sum_{j=??}^{j=??} \frac{1}{j} $$ and we need to determine what the new limits in the sum are. So, when $k=n$ we have $1/(n+1)$ as the summand, which now needs to be $1/j$. So $j$ must be $n+1$. Likewise, when $k=2n-1$ we have $1/(1+2n-1)=1/(2n)$ in the summand, so $j=2n$. So we transform $A(n)$ into $$ A(n) = \sum_{j=n+1}^{2n} \frac{1}{j} $$ and then finally we replace $j$ with $k$ to get your version. Reusing the $k$ is a standard mathematical technique, partly to avoid using too much notation and partly to keep the theme of certain elements in the sum present to convey the main idea.

For the second part of your question, the sum is being rewritten with certain of the summation terms written out explicitly. Consider: $$\sum_{i=1}^{n+1} i = \left(\sum_{i=2}^n i\right) + 1 + (n+1)$$ Here, we've removed the terms $i=1$ and $i=(n+1)$ from the sum and written them explicitly after the sum. That's exactly what's happening for you above.

So: $$A(n+1) = \sum_{k=n+1}^{2n} \frac{1}{1+k} = \sum_{k=n}^{2n-1} \frac{1}{k+1} + \frac{1}{2n} - \frac{1}{1+n} $$ because we have to add on the "missing" last term $1/(k+1)$ because the index $k$ now only goes as far as $n$ instead of $n+1$, and we subtract the "extra" term $1/n$ because the lower index now goes down to $n$ instead of stopping at $n+1$.

It might help if you set $n$ to be a small value, say $2$ or $3$ and write the sums out in full to see all the terms appear.

postmortes
  • 6,338
  • Hey, this really is a great answer and exactly what I was looking for. I appreciate it. Could you say "as a recipe" to this kind of Sums, whenever you decrease the upper bound, you have to add another term, decreasing on the lower bound you would substract something and vice versa to assure equality? What could help me is a more general formula for index shifting. – Lisa Dec 10 '19 at 21:30
  • Yes, if you change the bounds on the summation you have to check if you're losing or gaining a term as a consequence. If you're just renaming the summation index (as in the first part of the question) then you should not need to add or subtract any extra terms :) – postmortes Dec 10 '19 at 21:31
  • Hey, thanks again for the help. While trying it on myself again: Shouldn't the last term we substract be of the form $\frac{1}{1+n}$ ? The term you substract is just $\frac{1}{n}$ – Lisa Dec 10 '19 at 22:56
  • Also, i think the solution that my university gave is incorrect.

    Considering the 3 solutions wolfram gives: https://www.wolframalpha.com/input/?i=%28sum+1%2Fk%2C+k%3Dn%2B1+to+2n%29%2B1%2F%282n%2B1%29-1%2F%28n%2B1%29+AND+n+%3D+3 https://www.wolframalpha.com/input/?i=%28sum+1%2Fk%2C+k%3Dn%2B2+to+2n%2B1%29+AND+n+%3D+3 https://www.wolframalpha.com/input/?i=%28sum+1%2Fk%2C+k%3Dn%2B1+to+2n%29+%2B1%2F%282n%2B2%29%2B1%2F%282n%2B1%29-1%2F%28n%2B1%29+AND+n+%3D+3

    – Lisa Dec 10 '19 at 23:50
  • @TRRAASHHUERRAHKSDJH heya, you were absolutely right: the $-1/n$ should have been $-1/(1+n)$. Thanks for catching that :) I've edited the answer now. – postmortes Dec 11 '19 at 06:14
  • @TRRAASHHUERRAHKSDJH you're also right that the answer your university gave is wrong: the $1/(2n+2)$ term shouldn't be there -- it can't be obtained from the sums that are written – postmortes Dec 11 '19 at 06:16