Numerical Analysis I

MATH 345 : Fall 2023

Department of Mathematics - SUNY Geneseo
⇐ Back

Homework 8 - Numerical Integration

Due Date: December 3, 2023

Upload

Problems

  1. Write a Python function called CompositeSimpson that takes as input an array y=(y0,y1,, yn) and a step-size h, and returns the Composite Simpson approximation of the integral abf(x)dx where yj=f(xj) and xj=a+jh for j=0,1,,n and h=ban. Your function should first check that n is even and n2 and returns an error message if not both conditions are satisfied. For example,

       print('Error: n must be even!')
       return 0

    Test your function by choosing your all-time favorite integral abf(x)dx that you can compute exactly.

  2. Recall from calculus that if γ(t)=(x(t),y(t)) is a parametrized curve then the arc length of γ from γ(a) to γ(b) is given by the integral L=abγ(t)dx=ab(x(t))2+(y(t))2dt. In even the simplest cases, the above integral has no closed form and numerical integration is necessary. As a simple example, a parametrization of the ellipse x2r12+y2r22=1 is given by x(t)=r1cos(t)y(t)=r2sin(t) for t[0,2π], and where r1>0 and r2>0. If r1=3 and r2=5, find an estimate of the arc length of the ellipse using the Composite Simpson approximation accurate to within ε=1×106. Hint: Here f(t)=(x(t))2+(y(t))2; use math software to compute f(4)(t) to estimate M=maxt[0,2π]|f(4)(t)| and use your estimate for M to find n as we did in the example in class. Wolfram would be able to compute the 4th derivative and graph it.

  3. Recall that Newton's method is a numerical method to obtain an approximation to a root of an equation f(x)=0 using fixed-point iteration with the function g(x)=xf(x)f(x). In fixed-point iteration, we generate the sequence pk+1=g(pk) by supplying an initial condition p0 and under certain conditions the sequence (pk) converges to a fixed-point p of g and thus a root of the equation f(x)=0 provided f(p)0. Let f(x)=12π0xet2/2dt0.45 and thus f(x)=12πex2/2. To evaluate g(pk) we need to evaluate the integral 12π0pket2/2dt which can be done using the Composite Simpson rule. Find an approximate solution to f(x)=0 by performing N=200 iterations of Newton's method with initial condition p0=0.5. What is your approximation p^ and what is f(p^)? Suggestion: Do not use your previous fixed-point iteration/Newton Python code, it is easier to write the fixed-point iteration for loop directly and using your CompositeSimpson function.