731 - Numerical Summation of a Series

All about problems in Volume 7. If there is a thread about your problem, please use it. If not, create one with its number in the subject.

Moderator: Board moderators

Post Reply
lowai
New poster
Posts: 48
Joined: Mon Apr 29, 2002 1:26 pm

731 - Numerical Summation of a Series

Post by lowai »

I'd like to know how to solve Numerical Summation of a Series.
Here is my thought:

Code: Select all

         infinity    1
Phi(x) =   Sigma  -------
           k = 1   k(k+x).
                                 infinity      1 - x
Let Phi1(x) =  Phi(x) - Phi(1) =  Sigma    -------------.
                                  k = 1     k(k+x)(k+1)

Let Phi2(x) = Phi1(x) / (1 - x)
  and
    Phi3(x) = Phi2(x) - Phi2(2).
Phi3(x) converges faster than Phi(x). But when x comes large, this causes
precision error.
Alexander Denisjuk
New poster
Posts: 35
Joined: Sat Jan 05, 2002 2:00 am
Contact:

Re: help with 731

Post by Alexander Denisjuk »

I haven't solved this problem yet, but you can try the following:

Code: Select all

         infinity    1
Phi(x) =   Sigma  -------
           k = 1   k(k+x).

Let Phi1n(n+alpha) =  Phi(n+alpha) - Phi(n) ,

where n is integer. |alpha|<=0.5.

I belive it will work.
Alexander Denisjuk
New poster
Posts: 35
Joined: Sat Jan 05, 2002 2:00 am
Contact:

Post by Alexander Denisjuk »

Yes, it works.

Some more hints: Phi_m(n) can be expressed by Phi_{m}(n-1) and sum_{k=1}^{N}1/k^m should be computed as sum_{k=N}^{1}1/k^m to reduce rounding errors.
dennis
New poster
Posts: 5
Joined: Fri Aug 01, 2003 4:41 am
Contact:

731

Post by dennis »

I'm a new hand
anyone who can tell me what is brute force
and how to use it to solve 731
thx in advance :-?
Post Reply

Return to “Volume 7 (700-799)”