731 - Numerical Summation of a Series
Posted: Fri Jul 26, 2002 1:34 pm
I'd like to know how to solve Numerical Summation of a Series.
Here is my thought:
Phi3(x) converges faster than Phi(x). But when x comes large, this causes
precision error.
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).
precision error.