CS3911 Reading List: Week 11

Textbook Material
Read the following materials
  • Polynomial interpolation and approximation slides are in Inter-Approx.pdf.
  • Section 9.1
  • Solutions to Exam 2
  • Section 11.1 to Section 11.3 (read ahead)

Do the following problems
From our text
  • Study the fit command of gnuplot, and use it to do the following approximation problems: Problems P9.31, P9.38, P9.50 Note that you have to choose a degree of the approximation polynomial properly. Plotting the data points and reviewing the shape of the approximation polynomial would help.
Four More Problems
  • Given four data points in the xy-plane: X0 = (1,1), X1 = (2,3), X2 = (3,3) and X3 = (4,4), find an approximation polynomial of degree 1. Use a calculator and the least square method discussed in class to solve this problem. (Answer: y = 0.5 + 0.9x)
  • Given the following 5 points in the xy-plane: X0 = (-2,0), X1 = (-1,2), X2 = (0,1), X3 = (1,2) and X4 = (2,0), find the interpolating polynomial of degree 4, P4(x), with the divided difference method.
  • Evaluate P4(x) at x = 0.5, x = -0.5, x = -1.5 and x = 1.7 with the nested form.
  • Now, add a new point X5 = (3,-4) and find the new interpolating polynomial of degree 5, P5(x). Note that you should not start from scratch.

You do not have to turn in your paper. What I really expect you to do is using these problems to gauge your understanding of the subject. So, do the problems after finish reading the above sections.