Eq Roots1
Eq Roots1
Open Methods
In the Bracketing Methods the root is found within an interval limited by an upper bound and a
lower bound. Repeated application of these methods always results to a closer estimate of the
root so long as the root is found within the limits of the interval. Such methods are convergent
because they move closer to the true value of the root.
In contrast, the Open Methods are based on formulas that require only a single starting value
of x or two starting values that do not necessarily bracket the root. As such, there are instances
that the methods may diverge instead of converging to the true root.
a) Fixed-Point Iteration
Fixed-Point iteration is also called one-point iteration or successive substitution) by
rearranging the function f(x) = 0 so that x is on the left-hand side of the equation: x g x .
This transformation can be accomplished either by algebraic manipulation or by simply adding
x to both sides of the original equation.
f x
f1 x x
f 2 x e x
x
1 1
xr 0.56714329
b) The Newton-Rahpson Method
f(x)
Equation of the Line
y y0 mx x0
y f x
Equation of the Tangent Line
Tangent Line f xi 0 f ' xi xi xi1
f(xi)
f xi
x i 1 xi
f ' xi
x
xi
xi+1 Condition for Convergenc e
xroot
if rror x i 1 xi
then xroot xi 1
Perhaps the most widely used of all root-locating formulas is the Newton-Raphson equation.
If the initial guess of the root is xi, a tangent can be extended at the point (xi , f(xi)). The point
where this tangent crosses the x-axis usually represents an improved estimate of the root.
one of the initial values is replaced by the new estimate. Recall that in the Regula-Falsi
method the latest estimate of the root replaces whichever of the original values yielded a
function value with the same sign as f(xi). Consequently, the two estimates always bracket the
root. Therefore, for all practical purposes, the method always converges because the root is
kept within the bracket. In contrast, the Secant method replaces the values in strict sequence,
with the new value xi+1 replacing xi and xi replacing xi-1. As a result, the two values can
sometimes lie on the same side of the root. For certain cases, this can lead to divergence.