Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Extrapolation
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{short description|Method for estimating new data outside known data points}} {{for multi|the journal of speculative fiction|Extrapolation (journal)|the John McLaughlin album|Extrapolation (album)|the Apple TV+ series|Extrapolations (TV series)}} In [[mathematics]], '''extrapolation''' is a type of [[estimation]], beyond the original observation range, of the value of a variable on the basis of its relationship with another variable. It is similar to [[interpolation]], which produces estimates between known observations, but extrapolation is subject to greater [[uncertainty]] and a higher risk of producing meaningless results. Extrapolation may also mean extension of a [[wikt:method|method]], assuming similar methods will be applicable. Extrapolation may also apply to human [[experience]] to project, extend, or expand known experience into an area not known or previously experienced. By doing so, one makes an assumption of the unknown<ref name="merrian-webster">[http://www.merriam-webster.com/dictionary/extrapolation Extrapolation], entry at [[Webster's Dictionary|Merriam–Webster]]</ref> (for example, a driver may extrapolate road conditions beyond what is currently visible and these extrapolations may be correct or incorrect). The extrapolation method can be applied in the [[interior reconstruction]] problem. [[Image:Extrapolation example.svg|thumb|right|Example illustration of the extrapolation problem, consisting of assigning a meaningful value at the blue box, at <math>x=7</math>, given the red data points]] ==Method== A sound choice of which extrapolation method to apply relies on ''a priori knowledge'' of the process that created the existing data points. Some experts have proposed the use of causal forces in the evaluation of extrapolation methods.<ref>{{cite journal | title = Causal Forces: Structuring Knowledge for Time-series Extrapolation | author1 = J. Scott Armstrong | author2 = Fred Collopy | journal = Journal of Forecasting | volume = 12 | issue = 2 | pages = 103–115 | year = 1993 | doi = 10.1002/for.3980120205 | citeseerx = 10.1.1.42.40 | s2cid = 3233162 | access-date = 2012-01-10 | url = https://repository.upenn.edu/cgi/viewcontent.cgi?article=1072&context=marketing_papers }}</ref> Crucial questions are, for example, if the data can be assumed to be continuous, smooth, possibly periodic, etc. ===Linear=== Linear extrapolation means creating a tangent line at the end of the known data and extending it beyond that limit. Linear extrapolation will only provide good results when used to extend the graph of an approximately linear function or not too far beyond the known data. If the two data points nearest the point <math>x_*</math> to be extrapolated are <math>(x_{k-1},y_{k-1})</math> and <math>(x_k, y_k)</math>, linear extrapolation gives the function: :<math>y(x_*) = y_{k-1} + \frac{x_* - x_{k-1}}{x_{k}-x_{k-1}}(y_{k} - y_{k-1}).</math> (which is identical to [[linear interpolation]] if <math>x_{k-1} < x_* < x_k</math>). It is possible to include more than two points, and averaging the slope of the linear interpolant, by [[Regression analysis|regression]]-like techniques, on the data points chosen to be included. This is similar to [[linear prediction]]. ===Polynomial=== [[File:Lagrange polynomials for continuations of sequence 1,2,3.gif|thumb|right|Lagrange extrapolations of the sequence 1,2,3. Extrapolating by 4 leads to a polynomial of minimal degree ({{color|#006060|cyan}} line).]] A polynomial curve can be created through the entire known data or just near the end (two points for linear extrapolation, three points for quadratic extrapolation, etc.). The resulting curve can then be extended beyond the end of the known data. Polynomial extrapolation is typically done by means of [[Lagrange interpolation]] or using Newton's method of [[finite differences]] to create a [[Newton series]] that fits the data. The resulting polynomial may be used to extrapolate the data. High-order polynomial extrapolation must be used with due care. For the example data set and problem in the figure above, anything above order 1 (linear extrapolation) will possibly yield unusable values; an error estimate of the extrapolated value will grow with the degree of the polynomial extrapolation. This is related to [[Runge's phenomenon]]. ===Conic=== A [[conic section]] can be created using five points near the end of the known data. If the conic section created is an [[ellipse]] or [[circle]], when extrapolated it will loop back and rejoin itself. An extrapolated [[parabola]] or [[hyperbola]] will not rejoin itself, but may curve back relative to the X-axis. This type of extrapolation could be done with a conic sections template (on paper) or with a computer. ===French curve=== [[French curve]] extrapolation is a method suitable for any distribution that has a tendency to be exponential, but with accelerating or decelerating factors.<ref>[http://www.AIDSCJDUK.info AIDSCJDUK.info Main Index<!-- Bot generated title -->]</ref> This method has been used successfully in providing forecast projections of the growth of HIV/AIDS in the UK since 1987 and variant CJD in the UK for a number of years. Another study has shown that extrapolation can produce the same quality of forecasting results as more complex forecasting strategies.<ref>{{cite journal | title = Forecasting by Extrapolation: Conclusions from Twenty-Five Years of Research | author = J. Scott Armstrong | journal = Interfaces | volume = 14 | issue = 6 | pages = 52–66 | year = 1984 | doi = 10.1287/inte.14.6.52 | citeseerx = 10.1.1.715.6481 | s2cid = 5805521 | access-date = 2012-01-10 | url = https://repository.upenn.edu/cgi/viewcontent.cgi?article=1083&context=marketing_papers }}</ref> ===Geometric Extrapolation with error prediction=== Can be created with 3 points of a sequence and the "moment" or "index", this type of extrapolation have 100% accuracy in predictions in a big percentage of known series database (OEIS).<ref>{{Cite web |last=V. Nos |year=2021 |title=Probnet: Geometric Extrapolation of Integer Sequences with error prediction |url=https://hackage.haskell.org/package/Probnet |access-date=2023-03-14}}</ref> Example of extrapolation with error prediction : : <math>\text{sequence} = [1, 2, 3, 5]</math> : <math>{f_1(x, y) = \frac{x}{y}}</math> : <math>d_1 = f_1(3, 2)</math> : <math>{d_2 = f_1(5, 3)}</math> : <math>m = \text{sequence}(5)</math> : <math>n = \text{sequence}(3)</math> : <math>\begin{align} \text{f}(m, n, d_1, d_2) &= \text{round}\left( (n \cdot d_1 - m) + (m \cdot d_2) \right) \\ &= \text{round}\left(( 3 \times 1.5 - 5 \right) + (5 \times 1.66) ) = 8 \end{align}</math> ==Quality== Typically, the quality of a particular method of extrapolation is limited by the assumptions about the function made by the method. If the method assumes the data are smooth, then a non-[[smooth function]] will be poorly extrapolated. In terms of complex time series, some experts have discovered that extrapolation is more accurate when performed through the decomposition of causal forces.<ref>{{cite journal|url= https://repository.upenn.edu/bitstreams/cbec1013-046d-453f-b6e6-eae86e3d3ccc/download | title = Decomposition by Causal Forces: A Procedure for Forecasting Complex Time Series |author1=J. Scott Armstrong |author2=Fred Collopy |author3=J. Thomas Yokum | journal = International Journal of Forecasting | year = 2004| volume = 21 | pages = 25–36 | doi = 10.1016/j.ijforecast.2004.05.001 | s2cid = 8816023 }}</ref> Even for proper assumptions about the function, the extrapolation can diverge severely from the function. The classic example is truncated [[power series]] representations of sin(''x'') and related [[trigonometric function]]s. For instance, taking only data from near the ''x'' = 0, we may estimate that the function behaves as sin(''x'') ~ ''x''. In the neighborhood of ''x'' = 0, this is an excellent estimate. Away from ''x'' = 0 however, the extrapolation moves arbitrarily away from the ''x''-axis while sin(''x'') remains in the [[interval (mathematics)|interval]] [−1,{{nbsp}}1]. I.e., the error increases without bound. Taking more terms in the power series of sin(''x'') around ''x'' = 0 will produce better agreement over a larger interval near ''x'' = 0, but will produce extrapolations that eventually diverge away from the ''x''-axis even faster than the linear approximation. This divergence is a specific property of extrapolation methods and is only circumvented when the functional forms assumed by the extrapolation method (inadvertently or intentionally due to additional information) accurately represent the nature of the function being extrapolated. For particular problems, this additional information may be available, but in the general case, it is impossible to satisfy all possible function behaviors with a workably small set of potential behavior. ==In the complex plane== In [[complex analysis]], a problem of extrapolation may be converted into an [[interpolation]] problem by the change of variable <math>\hat{z} = 1/z</math>. This transform exchanges the part of the [[complex plane]] inside the [[unit circle]] with the part of the complex plane outside of the unit circle. In particular, the [[compactification (mathematics)|compactification]] [[point at infinity]] is mapped to the origin and vice versa. Care must be taken with this transform however, since the original function may have had "features", for example [[pole (complex analysis)|poles]] and other [[mathematical singularity|singularities]], at infinity that were not evident from the sampled data. Another problem of extrapolation is loosely related to the problem of [[analytic continuation]], where (typically) a [[power series]] representation of a [[function (mathematics)|function]] is expanded at one of its points of [[limit of a function|convergence]] to produce a [[power series]] with a larger [[radius of convergence]]. In effect, a set of data from a small region is used to extrapolate a function onto a larger region. Again, [[analytic continuation]] can be thwarted by [[function (mathematics)|function]] features that were not evident from the initial data. Also, one may use [[sequence transformation]]s like [[Padé approximant]]s and [[Levin-type sequence transformation]]s as extrapolation methods that lead to a [[summation]] of [[power series]] that are divergent outside the original [[radius of convergence]]. In this case, one often obtains [[rational approximant]]s. ==Extrapolation arguments== Extrapolation arguments are informal and unquantified arguments which assert that something is probably true beyond the range of values for which it is known to be true. For example, we believe in the reality of what we see through magnifying glasses because it agrees with what we see with the naked eye but extends beyond it; we believe in what we see through light microscopes because it agrees with what we see through magnifying glasses but extends beyond it; and similarly for electron microscopes. Such arguments are widely used in biology in extrapolating from animal studies to humans and from pilot studies to a broader population.<ref>{{cite book |last=Steel |first=Daniel |date=2007 |title=Across the Boundaries: Extrapolation in Biology and Social Science |url=https://oxford.universitypressscholarship.com/view/10.1093/acprof:oso/9780195331448.001.0001/acprof-9780195331448 |location=Oxford |publisher=Oxford University Press |page= |isbn=9780195331448}}</ref> Like [[slippery slope]] arguments, extrapolation arguments may be strong or weak depending on such factors as how far the extrapolation goes beyond the known range.<ref>{{cite journal |last1=Franklin |first1=James |authorlink=James Franklin (philosopher) |date=2013 |title=Arguments whose strength depends on continuous variation |url=http://ojs.uwindsor.ca/ojs/leddy/index.php/informal_logic/article/view/3610/3000 |journal= Informal Logic|volume=33 |issue=1 |pages=33–56 |doi=10.22329/il.v33i1.3610 |access-date=29 June 2021}}</ref> ==See also== {{Wiktionary|extrapolation}} {{Commons category}} *[[Forecasting]] *[[Minimum polynomial extrapolation]] *[[Multigrid method]] *[[Overfitting]] *[[Prediction interval]] *[[Regression analysis]] *[[Richardson extrapolation]] *[[Static analysis]] *[[Trend estimation]] *[[Extrapolation domain analysis]] *[[Dead reckoning]] *[[Interior reconstruction]] *[[Extreme value theory]] *[[Interpolation]] ==Notes== {{reflist}} ==References== *''Extrapolation Methods. Theory and Practice'' by C. Brezinski and [[Michela Redivo-Zaglia|M. Redivo Zaglia]], North-Holland, 1991. * Avram Sidi: "Practical Extrapolation Methods: Theory and Applications", Cambridge University Press, ISBN 0-521-66159-5 (2003). * Claude Brezinski and Michela Redivo-Zaglia : "Extrapolation and Rational Approximation", Springer Nature, Switzerland, ISBN 9783030584177, (2020). [[Category:Extrapolation]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Cite book
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite web
(
edit
)
Template:Color
(
edit
)
Template:Commons category
(
edit
)
Template:For multi
(
edit
)
Template:Ifsubst
(
edit
)
Template:Nbsp
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)
Template:Sister project
(
edit
)
Template:Wiktionary
(
edit
)