Interpolation

  • When is interpolation used?
  • Write the formula for linear interpolation in terms of two bounding points.
  • Write the formula for linear extrapolation in terms of the nearest two grid points.
  • For cubic spline interpolation, if you have a grid of 8 points, how many splines would you have?
    • How many parameters would need to be set to specify the splines?
    • What are the four types of constraints applied?
      • List the number of constraints for each type so that the number of parameters equals the number of constraints.
  • Cubic splines are special in that they are both continuous and smooth. How smooth?
  • What type of linear system arises when solving for the spline parameters?
  • When using interpolation to find some $y(x)$, you need to find the grid position (bounding indicies) of $x$.
    • How do you find the location if $x$ is uniformly spaced?
    • What method was used to find the location when $x$ is arbitrarily spaced?
  • What is the import command in Python to get access to the standard interpolation function?
    • What is the name of the function?
    • How do specify that cubic splines should be used?