i have a curiosity. Let's say i have a function $f \in C^{\infty}[a,b]$ such that there's a $x_0 in [a,b]$ that makes and $f(x_0) = 0$ and $a_n = f^{(n)}(x_0)$ diverges (i.e. $|a_n|=\infty$) could this affect somehow the accuracy of the approximation if i interpolate a function?
2026-03-30 23:29:48.1774913388
Interpolation and divergence of $n$-th derivative
63 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in APPROXIMATION
- Does approximation usually exclude equality?
- Approximate spline equation with Wolfram Mathematica
- Solving Equation with Euler's Number
- Approximate derivative in midpoint rule error with notation of Big O
- An inequality involving $\int_0^{\frac{\pi}{2}}\sqrt{\sin x}\:dx $
- On the rate of convergence of the central limit theorem
- Is there any exponential function that can approximate $\frac{1}{x}$?
- Gamma distribution to normal approximation
- Product and Quotient Rule proof using linearisation
- Best approximation of a function out of a closed subset
Related Questions in INTERPOLATION
- Almost locality of cubic spline interpolation
- Reverse Riesz-Thorin inequality
- How to construct a B-spline from nodal point in Matlab?
- Show that there is a unique polynomial of degree at most $2n+1$ such that $q^{[k]}(x_1)=a_k,$ $q^{[k]}(x_2)=b_k$ for $k=0, \dots, n$.
- Show that there is a unique polynomial of degree at most $2k+1$ such that $p^{[j]}(x_1)=a_j \text{ and } p^{[j]}(x_2)=b_j \text{ for } j=0,\dots, k.$
- How to find x intercept for a polynomial regression curve(order 7)
- Quadrature rules estimation
- How to obtain generalized barycentric coordinates for n-sided polygon?
- the highest degree of the polynomial, for which the above formula is exact?
- Interpolation method that gives the least arc lenght of the curve.
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
The error of interpolation is usually expressed in terms of the higher derivatives of the interpolated function, similar to Lagrange Remainder in terminated Taylor expansion which also sort of interpolation, actually extrapolation. Namely, if $I_n(x)$ is an $n$'th order interpolant of $f(x)$ at points $\{(x_i,f(x_i)\}_{i=0}^n$ then $$e_n(x)=f(x)-I_n(x)\approx\frac{f^{(n+1)}(c)}{(n+1)!}\prod_{i=0}^n(x-x_i) $$
Therefore if the derivative $|f^{(n+1)}|$ doesn't exists or unbounded all the process of interpolation isn't valid anymore as the error term isn't defined or unbounded.
If all derivatives of order $\leq n+1$ exists and bounded then your interpolation will work, otherwise - not.
Note that if you use too many points even if your function all required derivatives this won't be too good idea as the accuracy depends on a polynomial of a degree $n$ which grow up fast. Therefore practically one uses piecewise interpolations one per each few points (usually 2-3) of data, or alternatively splines, the former can be considered the non smooth version of the later. Therefore the smoothness requirements on $f$ are not too problematic.
example for $f=3^x-1$
switching to chebyshev points (linear interpolation has a problem at end points)