程序代写代做 CMPSC/Mathematics 451 MATLAB Program Two Due 1 April 2020 Spring 2020

CMPSC/Mathematics 451 MATLAB Program Two Due 1 April 2020 Spring 2020
You are to write MATLAB (or Octave) functions to implement the com- posite Trapezoid rule and the composite Simpson’s Rule for approximate computation of the integral
􏰀b a
I =
Both integration methods will have (n+1) evenly space mesh points x0, x1, . . . , xn
f(x)dx.
where
Given n you can generate the mesh points with the two MATLAB statements
h=(b-a)/n;
x=a:h:b;
Your function for the Trapezoid rule should have the first line
function int=trap(f,a,b,n)
where f is a function handle for the function to be integrated. I recom- mend reviewing the MATLAB intrinsic functions feval for function evalua- tion and sum for summing the entries of a vector. Your code should be very short and should avoid loops. The output int is T0(h) (but don’t use this notation in your code). I suggest treating n = 1 as a special case.
As part of your Simpson’s rule routine, you will need a function called update trap for updating the trapezoid rule. It has the first line
function new int=update trap(f,a,b,n,old int)
where a,b, and n have the same meaning as for trap. If we let h = (b − a)/n, then old int = T0(h). The output argument new int = T0(h/2).
1
xk =a+kh, h=(b−a)/n.

This uses the formula in the notes that produces T0(h/2) from T0(h) and the function f evaluated at the midpoints
xk+1/2,=a+(k+1/2)h, k=0:n−1.
Again, this code for this function should be short.
The last function implements the composite Simpson’s rule using the
functions trap and update trap. It’s first line is
function [int,err]=simpson(f,a,b,n).
where and err is
int = T1(h) = (4 ∗ T0(h/2) − T0(h))/3 err = (T1(2h) − T1(h))/15
is the error estimate from the notes. You may assume that n is divisible by 2. Thus simpson will make one call to trap (for n/2) to compute T0(2h) and two calles to update trap to compute T0(h) and T0(h/2). This function should also be very short.
Test your code on three functions that I will put in the folder Program Two Examples in the MATLAB Assignments Folder on Canvas. They are pifunc.m, logderiv.m, and erfderiv.m and they are all one line functions. For these three functions, use the Trapezoid rule and Simpson’s Rule with n = 32, 64, 128. Also produce compute T0(h)−I and T1(h)−I for the “exact” integrals. For Simpson’s Rule, also produce the estimated error.
• pifunc.m. Compute the integral over the interval [0, 1]. This function is
pifunc(x) = 1/(1 + x2). You should get an approximation of π.
• logderiv.m. Compute the integral over the interval [1, e] where e = exp(1) is the natural logarithm base. This function is
logderiv(x) = 1/x. The integral should be approximately 1.
2

• erfderiv.m. Compute the integral over the intervals [0,1] and [0,3].
This function is
2 −x2 erfderiv(x) = √πe .
You should get good approximations of erf(1) and erf(3) from the erf function in MATLAB.
Please turn in all three functions, your calling script, and your results. I recommned use of the function diary in MATLAB to produce a diary file for your output.
Quiz Four will involve using parts of this project to construct a function for Romberg integration.
3