4.8.10 · D5Numerical Methods
Question bank — Polynomial interpolation — Lagrange form, Newton's divided differences
This bank sharpens the parent topic. If a term is unfamiliar, go back and rebuild it before answering.
Two pictures behind these questions — glance at them, then answer from memory.


True or false — justify
There is exactly one polynomial of degree through distinct nodes.
True — the Vandermonde system is square and its determinant for distinct nodes, so the coefficients are uniquely pinned.
There is exactly one polynomial of degree exactly through distinct nodes.
False — the unique interpolant has degree ; it can drop lower. Three collinear points give a degree-1 line, not a genuine quadratic.
Lagrange and Newton forms of the same data are different polynomials.
False — by the uniqueness theorem there is only one degree- interpolant; the two forms are different recipes that expand to the identical curve.
The divided difference changes value if you swap and .
False — divided differences are symmetric in their arguments, so reordering nodes never changes the value of any bracket.
Adding a new data point in Lagrange form requires recomputing every basis polynomial.
True — every contains a factor for each other node, so a new node changes all numerators and denominators; Newton's form only appends one term.
If all are equal, the interpolating polynomial is a horizontal line.
True — the constant polynomial already hits every point, and by uniqueness it is the interpolant; all higher divided differences are zero.
Using more nodes on an equally spaced grid always improves accuracy.
False — high-degree equispaced interpolation oscillates violently near the ends (the Runge phenomenon); accuracy can get worse, not better.
The first divided difference is just the slope of the secant line between the two points.
True — it equals , the ordinary rise-over-run of the chord.
The interpolation error is zero at every node.
True — contains the factor , which vanishes at each node, so the interpolant is exact there.
Two forms (Lagrange and Newton) can disagree on the leading coefficient.
False — the leading coefficient equals the highest divided difference either way, since it is the single degree- contribution and the polynomial is unique.
Spot the error
" is the Lagrange basis."
Missing the denominator: without dividing by we get , so . The normalization is essential.
"Since the nodes are distinct we may repeat one -value as long as the -values match."
A repeated node breaks distinctness and makes a Vandermonde row duplicate, killing uniqueness; the standard formulas divide by , which becomes .
"The error formula lets me compute the exact error."
The point is unknown (only guaranteed to exist), so the formula gives a bound via , not an exact number.
"To read Newton's coefficients I take the bottom row of the divided-difference table."
You take the top diagonal — — those are the coefficients of the forward form starting at .
"Because is degree , the interpolant is always degree ."
Cancellations between the basis polynomials can lower the degree; the sum has degree , exactly only when the top divided difference is nonzero.
"The error formula needs merely continuous."
It needs to be -times differentiable on the interval; the Rolle-theorem argument uses that many derivatives.
Why questions
Why must every Newton term after the constant carry the factor (the product over the earlier nodes )?
So the -th term vanishes at all previously-fixed nodes ; this lets you add it without disturbing values already matched.
Why does interpolation error grow near the ends of the interval?
The node product is a product of the distances ; for a point inside the interval those distances are on average moderate, but for near a boundary the distances to the far nodes are large, so the whole product swells there and amplifies the error.
Why do Chebyshev nodes tame the error?
They cluster nodes toward the interval ends, which shrinks the maximum of , flattening the error product instead of letting it blow up.
Why is Newton's form preferred when data arrives incrementally?
A new point only appends one term (the next divided difference times a new product factor); all earlier coefficients stay valid, so no recomputation.
Why does as the nodes coalesce?
A divided difference is a discrete "slope of slopes"; letting all nodes merge turns each difference quotient into a derivative, recovering the Taylor series coefficient.
Why does distinctness of nodes guarantee a solution rather than just being convenient?
It makes the Vandermonde determinant nonzero, so the coefficient system is invertible — a genuine existence-and-uniqueness statement.
Why might a practitioner reject a single high-degree interpolant in favour of Cubic splines?
Splines use many low-degree pieces, avoiding the wild global oscillations of one high-degree polynomial while staying smooth at the joins.
Edge cases
With only one data point , what is ?
The constant — a degree- polynomial, the unique interpolant of a single point.
If three of your data points happen to be collinear (and are the only points), what degree is ?
Degree — the line through them already fits, so the second divided difference is and the quadratic term disappears.
What happens to Lagrange's if two nodes coincide?
A factor appears in a denominator, so is undefined — the method requires strictly distinct nodes.
For points that all lie on (constant), what are all the divided differences of order ?
All zero, because every secant slope is and slopes-of-slopes stay ; only survives.
If is itself a polynomial of degree , what is the interpolation error?
Exactly zero everywhere — then , so the error formula gives and reproduces perfectly.
As you interpolate on with more and more nodes, does the error necessarily go to zero?
Here yes, because is entire with bounded derivatives, but this is not automatic — for functions like on equispaced interpolation diverges (Runge).