Finding the sum of fractions with increasing denominator and decrease numerator for n iterations?

3.9k Views Asked by At

Considering something like this:

$ \frac{10}{10} + \frac{9}{11} + \frac{8}{12} + ...$

Where denominator increases each iteration while the numerator decreases. Is there a simple way to find the sum of n iterations of this without doing all the iterations?

3

There are 3 best solutions below

0
On

Using your example: Start by rewriting this as $1+\sum_{n=1}^{\infty}\frac{10-n}{10+n}$ (or you can re-index and start at $0$). I did it this way to show you the lower bound.

Comment: If this series is summable then: $\lim_{\ n\to \infty} \frac{10-n}{10+n} \to 0$. Proof

Does this sequence go tend to $0$?

I say this to say that we need to be specific because as we see arbitrary sequences like this aren't summable.

1
On

$$\sum_{j=0}^{n} {\frac{10-j}{10+j}}$$

$$=-\sum_{j=0}^{n} {\frac{j+10-20}{10+j}}$$

$$=-\sum_{j=0}^{n} {\frac{j+10}{10+j}} + \sum_{j=0}^{n} {\frac{20}{10+j}}$$

$$= -(n+1) + 20 (\sum_{j=1}^{n+10} {\frac{1}{j}}-\sum_{j=1}^{10} {\frac{1}{j}}) $$

$$ = 20H_{n+10} -n -1-20\sum_{j=1}^{10} {\frac{1}{j}}$$

$$ = 20H_{n+10} -n -\frac{7255}{126}$$

Where $H_{k} = \sum_{j=1}^{k} {\frac{1}{j}}$ is the $k$th harmonic number. The harmonic numbers have formulas. Check:

http://mathworld.wolfram.com/HarmonicNumber.html

0
On

$\sum\limits_{k=0}^{n-1} 1-\frac{2k}{n+k}=n-2\sum\limits_{k=1}^{n-1}\frac{k}{n+k}=n-2\sum\limits_{k=1}^{n-1}1-\frac{n}{n+k}= n-2(n-1)+2n\sum\limits_{k=1}^{n-1}\frac{1}{n+k}=\\ 2-n+2n(H_{2n-1}-H_n)$