False position method: Difference between revisions
No edit summary |
|||
Line 3: | Line 3: | ||
==Definition== | ==Definition== | ||
'''False position method''' is a [[root-finding algorithm]] that is qualitative similar to the [[bisection method]] in that it uses nested intervals based on opposite signs at the endpoints to converge to a root, but is computationally based on the [[secant method]]. The | '''False position method''' is a [[root-finding algorithm]] that is qualitative similar to the [[bisection method]] in that it uses nested intervals based on opposite signs at the endpoints to converge to a root, but is computationally based on the [[secant method]]. | ||
==Initial exploratory phase== | |||
The exploratory phase of the false position method involves finding a pair of input values at which the function has opposite signs. This could be done by running the usual [[secant method]] and evaluating at each stage until we get to opposite signs, ''or'' by some other means. Once we have found two points in the domain at which the function value has opposite signs, we are ready to begin the false position method ''proper''. | |||
==Iterative step== | |||
At stage <math>n</math>, we find the largest <math>k</math> for which <math>f(x_k)</math> has sign opposite to <math>f(x_{n-1})</math>. We then define: | |||
<math>x_n := \frac{x_kf(x_{n-1}) - x_{n-1}f(x_k)}{f(x_{n-1}) - f(x_k)}</math> |
Revision as of 16:46, 26 April 2014
This article is about a root-finding algorithm. See all root-finding algorithms
Definition
False position method is a root-finding algorithm that is qualitative similar to the bisection method in that it uses nested intervals based on opposite signs at the endpoints to converge to a root, but is computationally based on the secant method.
Initial exploratory phase
The exploratory phase of the false position method involves finding a pair of input values at which the function has opposite signs. This could be done by running the usual secant method and evaluating at each stage until we get to opposite signs, or by some other means. Once we have found two points in the domain at which the function value has opposite signs, we are ready to begin the false position method proper.
Iterative step
At stage , we find the largest for which has sign opposite to . We then define: