Welcome to AE Resources
INTERPOLATION

INTERPOLATION

EXTRAPOLATION
Extrapolation is the process of interpolation when the unknown point falls outside of the interval of known points, x1, …, xn = [A, B]. In interpolation, the most accurate values are computed when they lie midway between two known points. Thus by extension extrapolation can include much larger errors if care is not taken.
For the interpolation methods discussed previously, extrapolation can be determined by asked for a point outside of the known points. The programmer must include the possibility of extrapolation by not limiting the requested points to lie within x1, …, xn = [A, B] for this to be possible. No guarantees are given in terms of the accuracy of the extrapolation.
If curve fitting is not used, then extrapolation is typically based on Taylor Series.
T0 = T1 + (T)/(y)Δy + (T2)/(y2)(y)2)/(2) + … + (nT)/(yn)(y)n)/(n!) + (Tn + 1)/(yn + 1)(y)n + 1)/((n + 1)!)
The simplest is the zeroth order extrapolation
To = T1
while higher order extrapolation is determined by truncating the Taylor series. For a second-order extrapolation:
To = T1 + (T)/(y)Δy + (2T)/(y2)(y)2)/(2) + (T3)/(y3)(y)3)/(6)
where the last term is the remainder. This extrapolation requires that first and second derivatives be computed (T)/(y) and (2T)/(y2) in a similar manner as discussed in the error discussion.
← Previous Page
← Previous Page