
Because ABC and XAD are similar,
\displaystyle \frac{BC}{AC} = \frac{AD}{DX}, so
\displaystyle \frac{(y_2-y_1)}{(x_2-x_1)} = \frac{-y_1}{DX},
Our estimated solution is the x-coordinate of point X, ie., x_1 + DX, therefore
x = x_1 - \displaystyle \frac{y_1(x_2-x_1)}{(y_2-y_1)}
Summary/Background
The values you choose for x_1and x_2 need to be in the neighbourhood of the required solution. This means they need to be close enough so that they are not near other roots of the same equation.
Note the similarity between the formula above for linear interpolation, based on similar triangles:
x = x_1 - \displaystyle \frac{y_1(x_2-x_1)}{(y_2-y_1)}
and the formula for the Newton-Raphson method, based on gradient:
x_{n+1} = x_n - \displaystyle \frac{f(x_n)}{f'(x_n)}
The false position method uses the same formula as the secant method. However, the secant method does not require that the root remain bracketed like the bisection method does, and hence it does not always converge. However, it does not apply the formula on x_{n−1} and x_n, like the secant method, but on x_n and on the last iterate x_k such that f(x_k) and f(x_n) have a different sign. This means that the false position method always converges.
Note the similarity between the formula above for linear interpolation, based on similar triangles:
x = x_1 - \displaystyle \frac{y_1(x_2-x_1)}{(y_2-y_1)}
and the formula for the Newton-Raphson method, based on gradient:
x_{n+1} = x_n - \displaystyle \frac{f(x_n)}{f'(x_n)}
The false position method uses the same formula as the secant method. However, the secant method does not require that the root remain bracketed like the bisection method does, and hence it does not always converge. However, it does not apply the formula on x_{n−1} and x_n, like the secant method, but on x_n and on the last iterate x_k such that f(x_k) and f(x_n) have a different sign. This means that the false position method always converges.
Software/Applets used on this page

This applet forms part of "Java Number Cruncher: The Java Programmer's Guide to Numerical Computation", Prentice-Hall, by Ronald Mak, and is provided for MathsNetAlevel-plus by that author - see
Apropos-logic
Apropos-logic
Glossary
equation
A statement that two mathematical expressions are equal.
gradient
The slope of a line; the angle of its inclination to the horizontal.
interpolation
the process of estimating a value of y' for a given value of x' based on observed data where x' lies within the range of observed x.
linear
Straight, not curved. A linear equation is of the first degree, for example y = 2x+1.
secant
Trigonometry: the reciprocal of the cosine function, 1/cos x.
Coordinate geometry: a straight line that intersects two points on a curve.
Coordinate geometry: a straight line that intersects two points on a curve.
solution
the answer to a problem.
straight
The type of line produced by a linear equation.
work
Equal to F x s, where F is the force in Newtons and s is the distance travelled and is measured in Joules.
This question appears in the following syllabi:
Syllabus | Module | Section | Topic | Exam Year |
---|---|---|---|---|
AQA A-Level (UK - Pre-2017) | FP1 | Numerical Methods | Linear interpolation | - |
AQA A2 Further Maths 2017 | Pure Maths | Numerical Methods | Linear Interpolation - Extra | - |
AQA AS/A2 Further Maths 2017 | Pure Maths | Numerical Methods | Linear Interpolation - Extra | - |
CCEA A-Level (NI) | C3 | Numerical Methods | Linear interpolation | - |
Edexcel A-Level (UK - Pre-2017) | FP1 | Numerical Methods | Linear interpolation | - |
Edexcel AS Further Maths 2017 | Further Pure 1 | Numerical Methods | Linear Interpolation | - |
Edexcel AS/A2 Further Maths 2017 | Further Pure 1 | Numerical Methods | Linear Interpolation | - |
Methods (UK) | M2 | Numerical Methods | Linear interpolation | - |
OCR A-Level (UK - Pre-2017) | FP2 | Numerical Methods | Linear interpolation | - |
OCR AS Further Maths 2017 | Pure Core | Numerical Methods - Extra | Linear Interpolation | - |
OCR MEI AS Further Maths 2017 | Numerical Methods | Solution of Equations | Linear Interpolation | - |
OCR-MEI A-Level (UK - Pre-2017) | NM | Numerical Methods | Linear interpolation | - |
Universal (all site questions) | N | Numerical Methods | Linear interpolation | - |
WJEC A-Level (Wales) | FP3 | Numerical Methods | Linear interpolation | - |