Questions: Cubic Spline Interpolation

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A student interpolating 25 uniformly spaced data points finds wild oscillations near the endpoints and proposes using a degree-40 polynomial to get a better fit. What is wrong with this reasoning?

AA degree-40 polynomial cannot interpolate more than 40 points
BIncreasing polynomial degree worsens Runge's phenomenon — oscillations near the endpoints grow as degree increases for uniform nodes
CThe student should use Chebyshev nodes instead of a higher-degree polynomial, but the degree itself is not the problem
DHigh-degree polynomials are too slow to compute for practical use
Question 2 Multiple Choice

What makes the linear system that arises when constructing a natural cubic spline particularly efficient to solve?

AThe system is diagonal, so each unknown can be solved independently
BThe system is small — it always has exactly 3 unknowns regardless of n
CThe system is tridiagonal, symmetric, and diagonally dominant, allowing O(n) solution via the Thomas algorithm
DThe spline coefficients can be read directly from the data without solving any system
Question 3 True / False

A natural cubic spline is called 'natural' because it mimics the shape an elastic rod (drafting spline) takes when forced through data points — it minimizes bending energy.

TTrue
FFalse
Question 4 True / False

Cubic splines achieve high accuracy primarily by using higher-degree polynomials than simpler interpolants — the cubic degree is what buys smoothness.

TTrue
FFalse
Question 5 Short Answer

Why do cubic splines require boundary conditions, and what are the two most common choices?

Think about your answer, then reveal below.