ZOJ--1007:Numerical Summation of a Series

Numerical Summation of a Series

Time Limit: 10 Seconds      Memory Limit: 32768 KB      Special Judge

Produce a table of the values of the series


Equation 1

for the 2001 values of x, x= 0.000, 0.001, 0.002, ..., 2.000. All entries of the table must have an absolute error less than 0.5e-12 (12 digits of precision). This problem is based on a problem from Hamming (1962), when mainframes were very slow by today's microcomputer standards.

Input

This problem has no input.

Output

The output is to be formatted as two columns with the values of x and y(x) printed as in the C printf or the Pascal writeln.

printf("%5.3f %16.12f\n", x, psix )		writeln(x:5:3, psix:16:12)

As an example, here are 4 acceptable lines out of 2001.

0.000   1.644934066848
...
0.500   1.227411277760
...
1.000   1.000000000000
...
2.000   0.750000000000

The values of x should start at 0.000 and increase by 0.001 until the line with x=2.000 is output.

Hint

The problem with summing the sequence in equation 1 is that too many terms may be required to complete the summation in the given time. Additionally, if enough terms were to be summed, roundoff would render any typical double precision computation useless for the desired precision.

To improve the convergence of the summation process note that


Equation 2

which implies y(1)=1.0. One can then produce a series for y(x) - y(1) which converges faster than the original series. This series not only converges much faster, it also reduces roundoff loss.

This process of finding a faster converging series may be repeated to produce sequences which converge more and more rapidly than the previous ones.

The following inequality is helpful in determining how may items are required in summing the series above.

Equation 3 

思路: 这是一道数学题 我居然看了好久才搞懂题目意思 大概就是f(x)-f(1)=(1-x)/(k*(k+x)*(k+1))更加精确,因为此时是1/k^3 所以再加上(1-x)/(2*k*k) 最后加1

public class Numerical_Summation_of_a_Series {
	public static void main(String[] args) {
		double sum;
		for(double i=0;i<=2.000;i+=0.001){
			sum=0;
			for(int j=1;j<10000;j++){
				sum+=(1-i)/(j*(j+i)*(j+1));
			}
			sum=sum+(1-i)/(2*10000*10000)+1;
			System.out.printf("%.3f",i);
			System.out.print(" ");
			System.out.printf("%.12f",sum);
			System.out.println();
		}
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值