Thiele/Small: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>BG19bot
m WP:CHECKWIKI error fix for #61. Punctuation goes before References. Do general fixes if a problem exists. - using AWB (9838)
en>Huw Powell
Line 1: Line 1:
In [[numerical analysis]], '''inverse quadratic interpolation''' is a [[root-finding algorithm]], meaning that it is an algorithm for solving equations of the form ''f''(''x'') = 0. The idea is to use [[polynomial interpolation|quadratic interpolation]] to approximate the [[inverse function|inverse]] of ''f''. This algorithm is rarely used on its own, but it is important because it forms part of the popular [[Brent's method]].
Nice to meet you, I am Marvella Shryock. I am a meter reader. Puerto Rico is exactly where he and his wife live. His spouse doesn't like it the way he does but what he really likes doing is to do aerobics and he's been doing it for quite a while.<br><br>Feel free to surf to my web site ... diet meal delivery ([http://Www.lookweb.it/diettogo30380 this])
 
==The method==
 
The inverse quadratic interpolation algorithm is defined by the [[recurrence relation]]
 
:<math> x_{n+1} = \frac{f_{n-1}f_n}{(f_{n-2}-f_{n-1})(f_{n-2}-f_n)} x_{n-2} + \frac{f_{n-2}f_n}{(f_{n-1}-f_{n-2})(f_{n-1}-f_n)} x_{n-1} </math>
 
:::::<math> {} + \frac{f_{n-2}f_{n-1}}{(f_n-f_{n-2})(f_n-f_{n-1})} x_n, </math>
 
where ''f''<sub>''k''</sub> = ''f''(''x''<sub>''k''</sub>). As can be seen from the recurrence relation, this method requires three initial values, ''x''<sub>0</sub>, ''x''<sub>1</sub> and ''x''<sub>2</sub>.
 
==Explanation of the method==
 
We use the three preceding iterates, ''x''<sub>''n''&minus;2</sub>, ''x''<sub>''n''&minus;1</sub> and ''x''<sub>''n''</sub>, with their function values, ''f''<sub>''n''&minus;2</sub>, ''f''<sub>''n''&minus;1</sub> and ''f''<sub>''n''</sub>. Applying the [[Lagrange polynomial|Lagrange interpolation formula]] to do quadratic interpolation on the inverse of ''f'' yields
 
:<math> f^{-1}(y) = \frac{(y-f_{n-1})(y-f_n)}{(f_{n-2}-f_{n-1})(f_{n-2}-f_n)} x_{n-2} + \frac{(y-f_{n-2})(y-f_n)}{(f_{n-1}-f_{n-2})(f_{n-1}-f_n)} x_{n-1} </math>
 
:::::<math> {} + \frac{(y-f_{n-2})(y-f_{n-1})}{(f_n-f_{n-2})(f_n-f_{n-1})} x_n. </math>
 
We are looking for a root of ''f'', so we substitute ''y'' = ''f''(''x'') = 0 in the above equation and this results in the above recursion formula.
 
==Behaviour==
 
The asymptotic behaviour is very good: generally, the iterates ''x''<sub>''n''</sub> converge fast to the root once they get close. However, performance is often quite poor if you do not start very close to the actual root. For instance, if by any chance two of the function values ''f''<sub>''n''&minus;2</sub>, ''f''<sub>''n''&minus;1</sub> and ''f''<sub>''n''</sub> coincide, the algorithm fails completely. Thus, inverse quadratic interpolation is seldom used as a stand-alone algorithm.
 
The order of this convergence is approximately 1.8, it can be proved by the Secant Method analysis.
 
==Comparison with other root-finding methods==
 
As noted in the introduction, inverse quadratic interpolation is used in [[Brent's method]].
 
Inverse quadratic interpolation is also closely related to some other root-finding methods.
Using [[linear interpolation]] instead of quadratic interpolation gives the [[secant method]]. Interpolating ''f'' instead of the inverse of ''f'' gives [[Muller's method]].
 
==See also==
* [[Successive parabolic interpolation]] is a related method that uses parabolas to find extrema rather than roots.
 
==References==
 
*[[James F. Epperson]], [http://books.google.com/books?id=Mp8-z5mHptcC&lpg=PP1&pg=PA182#v=onepage&q&f=false An introduction to numerical methods and analysis], pages 182-185, Wiley-Interscience, 2007. ISBN 978-0-470-04963-1
 
[[Category:Root-finding algorithms]]

Revision as of 20:21, 6 February 2014

Nice to meet you, I am Marvella Shryock. I am a meter reader. Puerto Rico is exactly where he and his wife live. His spouse doesn't like it the way he does but what he really likes doing is to do aerobics and he's been doing it for quite a while.

Feel free to surf to my web site ... diet meal delivery (this)