Chebyshev Nodes and Optimal Interpolation

Graduate Depth 85 in the knowledge graph I know this Set as goal
Unlocks 1 downstream topic
chebyshev optimal-nodes interpolation

Core Idea

Chebyshev nodes, the roots of the Chebyshev polynomial T_n(x) = cos(n·arccos(x)), minimize max|∏(x - x_i)| and are clustered near the interval endpoints [-1,1]. Using Chebyshev nodes for interpolation prevents Runge oscillations and ensures convergence for smooth functions. This choice is optimal among all node sets in the minimax sense.

Explainer

Runge's phenomenon revealed that equally-spaced interpolation nodes cause polynomial interpolants to wildly oscillate near the endpoints of the interval, even for smooth functions like 1/(1 + 25x²). The source of the problem is the node error product ω(x) = (x - x_0)(x - x_1)···(x - x_n): the interpolation error at any point x is bounded by a term involving |ω(x)|, and with equally-spaced nodes, this product becomes very large near x = ±1. To fix the problem, you need to choose nodes that make max|ω(x)| as small as possible.

The answer comes from an unexpected direction: trigonometry. The Chebyshev nodes on [-1, 1] are x_k = cos((2k+1)π / (2n+2)) for k = 0, 1, ..., n. These are the projections onto the x-axis of equally-spaced points on the upper semicircle. Near the center x = 0, the points are spread apart; near the endpoints x = ±1, they cluster together. This crowding near the endpoints is precisely what counteracts the natural tendency of the error to blow up there.

The optimality of Chebyshev nodes is not accidental — it follows from a deep minimax property. The Chebyshev polynomial T_n(x) = cos(n arccos(x)) is the unique monic polynomial of degree n whose maximum absolute value on [-1, 1] is minimized. Its maximum value is 1/2^{n-1}, and no other monic polynomial of degree n can stay flatter on [-1, 1]. Since the node error product ω(x) is exactly a monic degree-(n+1) polynomial, choosing the roots of T_{n+1}(x) as your nodes makes ω(x) = T_{n+1}(x)/2^n, which achieves the minimum possible maximum.

In practice, transforming any interval [a, b] to [-1, 1] via x = (a + b)/2 + (b - a)/2 · t lets you always use Chebyshev nodes. For smooth functions, using Chebyshev nodes not only prevents the Runge explosion but guarantees that the interpolating polynomial converges to the function as n → ∞ — a guarantee that equally-spaced interpolation cannot provide. This makes Chebyshev nodes the default choice whenever you are doing polynomial interpolation and care about accuracy across the whole interval.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueReading and Writing DecimalsComparing and Ordering DecimalsAdding and Subtracting DecimalsMultiplying DecimalsDividing DecimalsDividing FractionsMixed Number ArithmeticOrder of OperationsInteger Order of OperationsVariable ExpressionsCombining Like TermsOne-Step EquationsTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionTrigonometric Ratios ReviewRadian MeasureConverting Between Degrees and RadiansThe Unit CircleGraphing Sine and CosineGraphing Tangent and Reciprocal Trigonometric FunctionsDerivatives of Trigonometric FunctionsAntiderivativesIndefinite IntegralsBasic Integration RulesRiemann SumsDefinite Integral DefinitionFundamental Theorem of Calculus Part 1Fundamental Theorem of Calculus Part 2U-SubstitutionPartial Fraction Decomposition for IntegrationImproper Integrals - ConvergenceIntegral TestP-SeriesComparison TestLimit Comparison TestAbsolute vs. Conditional ConvergencePower SeriesTaylor PolynomialsTaylor SeriesInterpolation Error AnalysisRunge's PhenomenonChebyshev Nodes and Optimal Interpolation

Longest path: 86 steps · 413 total prerequisite topics

Prerequisites (1)

Leads To (1)