Using the Method of Differences to Find the Sum of a Series

  • Thread starter Thread starter converting1
  • Start date Start date
  • Tags Tags
    Method
AI Thread Summary
The discussion focuses on using the method of differences to find the sum of the series \(\sum_{r=1}^n (r-1 + \frac{1}{r} - \frac{1}{r+1})\). The initial attempt to split the series yielded the correct answer of \(\frac{n(n^2 + 1)}{2(n+1)}\). However, when applying the method of differences, the user incorrectly calculated the final sum, resulting in \(\frac{n(n-1)}{2} - \frac{1}{n+1}\). A key error identified was the omission of a "+1" in the final expression. The correct result involves recognizing the telescoping nature of the series.
converting1
Messages
65
Reaction score
0
find \displaystyle\sum_{r=1}^n (r-1 + \dfrac{1}{r} - \dfrac{1}{r+1})

using the method of differences

if I split it up (i.e do sum of r and sum of 1 and sum of (1/r - 1/(r+1)) to n I get the right answer of \dfrac{n(n^2 + 1)}{2(n+1)}

however if I do the method of differences right away of the expression I get:

r= 1: 0 + 1 - 1/2
r= 2: 1 + 1/2 - 1/3
r= 3: 2 + 1/3 - 1/4
...

r= n-1: n-2 + 1/(n-1) - 1/n
r = n: n-1 + 1/n - 1/(n+1)

and adding all of this I get \displaystyle\sum_{r=0}^{n-1} r - \dfrac{1}{n+1}

= \dfrac{n(n-1)}{2} - \dfrac{1}{n+1}

which doesn't give me the right answer...

where have I gone wrong using the second method?
 
Physics news on Phys.org
converting1 said:
find \displaystyle\sum_{r=1}^n (r-1 + \dfrac{1}{r} - \dfrac{1}{r+1})

using the method of differences

if I split it up (i.e do sum of r and sum of 1 and sum of (1/r - 1/(r+1)) to n I get the right answer of \dfrac{n(n^2 + 1)}{2(n+1)}

however if I do the method of differences right away of the expression I get:

r= 1: 0 + 1 - 1/2
r= 2: 1 + 1/2 - 1/3
r= 3: 2 + 1/3 - 1/4
...

r= n-1: n-2 + 1/(n-1) - 1/n
r = n: n-1 + 1/n - 1/(n+1)

and adding all of this I get \displaystyle\sum_{r=0}^{n-1} r - \dfrac{1}{n+1}

= \dfrac{n(n-1)}{2} - \dfrac{1}{n+1}

which doesn't give me the right answer...

where have I gone wrong using the second method?

You dropped a "+1". You should have gotten
1 + \frac{n(n-1)}{2} - \frac{1}{n+1}
 
This is an telescoping Sequence
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top