"Calculation of Definite Points with Recursive Formulas (matlab Edition)" is shared by members and can be read online. For more related "Calculation of Definite Points with Recursive Formulas (matlab Edition) (7-page Collector's Edition)", please search on Renren Library online.
1. Use recursive formulas to calculate the experiment purpose of the fixed integral: 1. Fully understand that unstable calculation methods will lead to the accumulation of errors, which will lead to a rapid increase in errors during the calculation process, resulting in large errors in the results. 2. When selecting numerical formulas for approximate calculations, we should learn to choose formulas that will not cause the error to increase rapidly during the calculation process. 3. Understand the sources and specific processes of error accumulation caused by unstable calculation formulas; 4. Master the simple matlab language for numerical calculations. Experimental topic: For n=0, 1, 2, 20, calculate the fixed integral: 01xnx 5dx Experimental principle: y(n)=01 NX 5=1n015 xn-1 x5dx There are two iterative methods in the calculation, as shown below: Method 1: y(n)=1n5 * y(n-1), n=1, 2, 3, 20; Y(0)=011x 5dx=ln6-ln5 0.
2. 182322 Method 2: The recursive formula is y(n-1)=1 5n-1 5*y(n), n=20, 19, 1. In addition, from 1 126=1 6 * 01 x 20dx0 1 x 20x 5 dx1 5 * 01 x 20dx=1 105 Ideal value: y(20)1 2*(1 105 1 126)0.008730. Experimental content: For algorithm 1, the program code is as follows: function y, n=funa() symbol k n t; t=0.182322n=0; y=zero(1, 20); y(1)=t; for k=2:20y(k)=1/k-5 * y(k-1); n=n1; target y(1:6)y(7:11) For algorithm 2, the program code is as follows: % calculates the fixed integral; % n- represents the number of iterations; %y is used to store the result; function y,.
3. n=f(); syms k y _ 20y=zero(21, 1); n=1; y _ 20=(1/105 1/126)/2; y(21)=y _ 20; for k=21:-1:2y(k-1)=1/(5 *(k-1)-y(k)/5; n=n1; Target experimental results: During the calculation process, the first 11 numbers are too small, and the last 9 numbers are relatively large, resulting in the first few numbers only displaying 0.0000, so first output the first 6 numbers, and then output 7-11 numbers, so that all of them can be displayed. The result of algorithm one: y, n=funa% first display y (1)-y (6)ans=0.1823-0.41162.3914-11.706958.7346-293.5063% Then y (7)-y (11)ans=1.0e 00 is displayed.
4.5 *0.0147-0.07340.3669-1.83469.1728y=1.0e 012 *Column 1 to Column 110000-0.0000000-0.0000000-0.0000000-0.0000000-0.00000000-0.000000000-0.0000000000-0.000010.0006-0.00290.0143-0.07170.3583-1.7916n=19 Results of Algorithm 2: y, b=fy=0.18230.08 840.05800.04310.03430.02850.02430.02120.01880.01690.01540.01410.01300.01200.01120.01050.00990.00930.00890.00830.0087b=21 Experimental analysis: From the calculation results of the two problems, it can be seen that the first algorithm is unstable, while the second algorithm is stable. The first algorithm: Because y(1) itself has certain errors, it is set to _1, because y(n)=1/n-5y(n-1)=1/n-5(1/(n-1)-5y(n-1)=1/n-5/(n-1)-52/(n-2)-(5n)*y(0) Therefore, after multiple iterations, the error will increase many times. It can be seen that in practical applications, numerical instability should be avoided.