Homework 6 - Divided Differences
Due Date: November 7, 2023
Problems
Consider the following data
, :-1 -1 0 0 3 -1 5 -3 Compute the divided-difference table associated to the given data.
Write out the interpolating polynomial
of the given data in the divided-difference representation (but do not expand).Compute
.Now suppose that we add the new data point
. What is the divided-difference table associated to the extended data points for ?Compute
, where is the interpolating polynomial for the extended data points.
Fill in the unknown entries in the divided-difference table given below:
0 1 2 3 Using your results, write out the interpolating polynomial in expanded form.
Write a Python function called
DividedDiff
whose inputs are Numpy arrays and , and returns the divided-difference coefficients as a Numpy array. To test your function, try it with the data from Problem 1. Only include your code and not the results of your tests.Write a Python function called
DividedDiffInterp
whose inputs are Numpy arrays , , and , and returns the array , where and is the interpolating polynomial for the data points. The polynomial is to be evaluated using the divided-difference representation. Your function should first callDividedDiff
to compute the divided-difference coefficients and then evaluate using the divided-difference representation. To test your function, compare the results using yourLagrangeInterp
function on any given set of , and data points (e.g., you could use the data from Homework 4 Problems 6 or 7, or the data from Problem 1 above). Only include your code and not the results of your tests.Consider the following data
and let be the interpolating polynomial.Compute the divided-difference representation of
and then expand the polynomial in the formCompute the Lagrange form of
and then expand the polynomial in the same form as in part (a).Comment on what you obtained in parts (a) and (b).
Let
for and let be the Chebyshev nodes in . Let be equally spaced points inside the interval where . Evaluate the interpolating polynomial for the data at the points in two different ways:Using your
LagrangeInterp
function.Using your newly created
DividedDiffInterp
function.
Then do the following:
Plot the error function
for each case (1) and (2) on the same plot. Do this for , , and (or experiment with other values of ) but include only your plot for .What happens to the error function for each case (1) and (2) as
increases?