ADMATH Module 3
ADMATH Module 3
Iterative methods are used when we cannot find the solution of algebraic equation
iterative methods. This approximate solution is close to exact solution but never equal
to exact solution.
Two Categories:
1. Bracketing Method
a. Bisection Method
2. Open Method
b. Secant Method
Bisection Method
separates the interval and subdivides the interval in which the root of the equation lies.
The principle behind this method is the intermediate theorem for continuous functions.
It works by narrowing the gap between the positive and negative intervals until it closes
in on the correct answer. This method narrows the gap by taking the average of the
positive and negative intervals. It is a simple method and it is relatively slow. The
bisection method is also known as interval halving method, root-finding method, binary
Let us consider a continuous function “f” which is defined on the closed interval
[a, b], is given with f(a) and f(b) of different signs. Then by intermediate theorem, there
Algorithms:
Step 1: Choose lower “a” and upper “b” guesses for the root such that the
function changes sign over the interval. This can be checked by ensuring
𝑎+𝑏
𝑋𝑂 =
2
a. If 𝑓(𝑎) ∗ 𝑓(𝑋𝑂 ) < 0, the root lies in the lower interval. Therefore,
b. If 𝑓(𝑎) ∗ 𝑓(𝑋𝑂 ) > 0, the root lies in the upper interval. Therefore,
needed to find an interval of two values of ‘x’ that is meant to contain at least one root
Algorithms:
step 2