Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

summing series

1 view
Skip to first unread message

maddy

unread,
Jan 21, 2011, 4:43:18 PM1/21/11
to
how do we sum the series with terms a(n) = (1/8)^n (2n + 1)!/(n!)^2 to
infinity?
Thank you for your help.

sanebow

unread,
Jan 21, 2011, 5:01:41 PM1/21/11
to

"maddy" <madhur...@gmail.com> wrote in message
news:88b672cc-b573-4c6d...@t8g2000prh.googlegroups.com...

> how do we sum the series with terms a(n) = (1/8)^n (2n + 1)!/(n!)^2 to
> infinity?
> Thank you for your help.

a(n)/a(n+1) = 8* (1 / ( ( 2*n+3 ) * ( 2*n+2 ) ) ) * 1/(n+1)

series diminishes by about 1/(n^3) ( fast)


Ray Vickson

unread,
Jan 21, 2011, 5:50:08 PM1/21/11
to

Maple 9.5 gets:

an:=(1/8)^n *(2*n + 1)!/(n!)^2;
n
(1/8) (2 n + 1)!
an := -----------------
2
(n!)

> S0:=sum(an,n=1..infinity);

1/2
S0 := 2 2 - 1
So the sum for n from 1 to infinity is 2*sqrt(2)-1 .

We can check this numerically, by summing an for n from 1 to 50 and
comparing:
for k from 1 to 50 do t[k]:=evalf(subs(n=k,an)): end do:
so t[1]=a1,t[2]=a2, etc. Note: values of an for n near 50 and above
are very small: t[50] =~= 0.71396e(-14), so the sum for n from 51 to
infinity is very small as well. We know this because the tail of the
sum is much less than the corresponding geometric series. We get:
sum_{n=1..50} an = 1.828427126, while 2*sqrt(2)-1 = 1.828427124 . The
only mystery is how Maple gets the sum.

R.G. Vickson

Henry

unread,
Jan 21, 2011, 8:29:30 PM1/21/11
to

It might be more natural in this case to start from n=0 to give
sqrt(8) as the sum.
Indeed more generally

sum_{n=0 to infinity} x^n * (2n + 1)! / (n!)^2 = (1-4*x)^(-3/2),
at least for -1/4 < x < 1/4.

generatingfunctionology http://www.math.upenn.edu/~wilf/DownldGF.html
provides a variety of methods for questions like this.

Henry

unread,
Jan 21, 2011, 8:29:43 PM1/21/11
to
On Jan 21, 10:50 pm, Ray Vickson <RGVick...@shaw.ca> wrote:

It might be more natural in this case to start from n=0 to give

Rob Johnson

unread,
Jan 22, 2011, 5:37:37 AM1/22/11
to
In article <88b672cc-b573-4c6d...@t8g2000prh.googlegroups.com>,

Consider the sum

oo
--- n
f(x) = > (2n+1) C(2n,n) x [1]
---
k=0

Your sum is f(1/8). This is reminiscent of the series

oo
-1/2 --- n
(1-4x) = > C(2n,n) x [2]
---
n=0

Taking the derivative, we get

oo
-3/2 --- n-1
2 (1-4x) = > n C(2n,n) x [3]
---
n=0

Adding [2] and 2x times [3] we get

-3/2
f(x) = (1-4x) [4]

Thus, your sum is f(1/8) = 2^{-3/2}.

Rob Johnson <r...@trash.whim.org>
take out the trash before replying
to view any ASCII art, display article in a monospaced font

Rob Johnson

unread,
Jan 22, 2011, 10:13:05 AM1/22/11
to
In article <2011012...@whim.org>,

Oops. f(1/8) = (1/2)^{-3/2} = 2^{3/2} = sqrt(8)

Ray Vickson

unread,
Jan 22, 2011, 1:32:48 PM1/22/11
to

Of course, he says (striking his forehead as he does so). Had I put x
instead of 1/8 in the sum, Maple would have given me this. Of course,
once we see the answer we can easily derive it, just using the
expression for the "negative binomial" C(-a,n) with a > 0.

R.G. Vickson


>
> generatingfunctionologyhttp://www.math.upenn.edu/~wilf/DownldGF.html

0 new messages