Homework 8 - Numerical Integration
Due Date: December 3, 2023
Problems
Write a Python function called
CompositeSimpson
that takes as input an array and a step-size , and returns the Composite Simpson approximation of the integral where and for and . Your function should first check that is even and 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
that you can compute exactly.Recall from calculus that if
is a parametrized curve then the arc length of from to is given by the integral 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 is given by for , and where and . If and , find an estimate of the arc length of the ellipse using the Composite Simpson approximation accurate to within . Hint: Here ; use math software to compute to estimate and use your estimate for to find as we did in the example in class. Wolfram would be able to compute the 4th derivative and graph it.- Recall that Newton's method is a numerical method to obtain an approximation to a root of an equation
using fixed-point iteration with the function In fixed-point iteration, we generate the sequence by supplying an initial condition and under certain conditions the sequence converges to a fixed-point of and thus a root of the equation provided . Let and thus To evaluate we need to evaluate the integral which can be done using the Composite Simpson rule. Find an approximate solution to by performing iterations of Newton's method with initial condition . What is your approximation and what is ? Suggestion: Do not use your previous fixed-point iteration/Newton Python code, it is easier to write the fixed-point iterationfor
loop directly and using yourCompositeSimpson
function.