Numerical Analysis I

MATH 345 : Fall 2023

Department of Mathematics - SUNY Geneseo
⇐ Back

Homework 7 - Numerical Differentiation

Due Date: November 20, 2023

Upload

Problems

  1. Use the general 3-point formula derived in class to show that when x0,x1,xn are equally spaced nodes we obtain the following: f(x0)=12h[3f(x0)+4f(x1)f(x2)]+h23f(3)(ξ0)f(x1)=12h[f(x2)f(x0)]h26f(3)(ξ1)f(x2)=12h[f(x0)4f(x1)+3f(x2)]+h23f(3)(ξ2)
  2. Write a Python function called ThreePointDiff that takes as input an array y=(f(x0),f(x1),, f(xn)) and a step-size h, and returns estimates for the derivatives yj=f(xj) using 3-point formula estimates. For the end-point derivatives y0 and yn use the appropriate end-point formula, and for the remaining n2 derivatives use the 3-point mid-point formula.
  3. Consider the following data:

    x f(x)
    −1.5 1.0
    −1.0 0.0
    −0.5 −1.0
    0.0 2.0
    0.5 4.0

    Use the 3-point formulas to estimate f(x) for each x. For the end-point derivatives use the appropriate end-point formula, and for the remaining derivatives use the 3-point mid-point formula. Do this by hand for practice, and then use your ThreePointDiff function to check your answers.

  4. Download the file xy-data.txt. The file is a text file containing two columns where the first column are the values x=(x0,x1,,xn) and the second column are the values y=(y0,y1,,yn). Download the file, save it in an appropriate directory, and then in Python navigate to this directory. Load the contents of the data file and save it to the variable z as follows:

    z = np.loadtxt( 'xy-data.txt' )

    Use your ThreePointDiff function to compute estimates y^j for the derivatives yj=f(xj) for j=0,1,,n. The value of h can be determined from the x data; notice that the nodes are equally spaced.

    1. Plot the (xj,yj) data and the data (xj,y^j on the same axis. Using your knowledge from calculus, comment on how well the derivatives are computed numerically.
    2. Plot the Hermite polynomial H(x) interpolating the data set {(xj,yj,y^j)}j=0n on a set of grid points u=(u0,u1,,uN) where u0=x0 and uN=xn. Pick a value of N so that N>n.