Bisection Method
Bisection Method
Bisection Method
Method
Definition
Polynomial Equations
These are equations formed with
variables, exponents, and coefficients.
Definition
Polynomial Equations
𝑓 𝑥 = 3𝑥 2 + 5𝑥 + 19
𝑓 𝑥 = 5𝑥 3 + 12𝑥 2 − 0.4𝑥 + 19
Definition
Bisection Method
The principle behind this method is the
intermediate theorem for continuous
functions. It works by narrowing the
gap between the positive and negative
intervals of the function until it closes
in on the correct answer.
Definition
Bisection Method
• It is applicable to equations of the form 𝑓(𝑥) = 0.
• We find limiting values 𝑥𝑎 and 𝑥𝑏 . Then the limiting values
therefore brackets the root.
• The bisection method is also known as interval halving method
since the strategy is to bisect or halve the interval from values 𝑥𝑎
and 𝑥𝑏 , then to retain the half interval whose ends still brackets
the root.
Definition Bisection Method
Definition
Bisection Method
• This method will divide the interval until the resulting interval is
found.
• The bisection method is also known as root-finding method, binary
search method or dichotomy method.
• It is a simple method, and it is relatively slow.
Procedures
𝑥𝑏 − 𝑥𝑎 𝑓(𝑥𝑏 )
𝑥 = 𝑥𝑏 −
𝑓 𝑥𝑏 − 𝑓(𝑥𝑎 )
Procedures
(𝑥 − 𝑥𝑎 ) (𝑥𝑏 − 𝑥𝑎 )
=
0 − 𝑓(𝑥𝑎 ) 𝑓 𝑥𝑏 − 𝑓(𝑥𝑎 )
−𝑓(𝑥𝑎 )(𝑥𝑏 − 𝑥𝑎 )
(𝑥 − 𝑥𝑎 ) =
𝑓 𝑥𝑏 − 𝑓(𝑥𝑎 )
𝑓(𝑥𝑎 )(𝑥𝑏 − 𝑥𝑎 ) 𝑓(𝑥𝑏 ) − 0
𝑥 = 𝑥𝑎 −
𝑓 𝑥𝑏 − 𝑓(𝑥𝑎 )
𝑓 𝑥𝑏 − 𝑓(𝑥𝑎 )
(𝑥𝑏 − 𝑥)
𝒙 = 𝟎. 𝟖𝟏𝟑
Bisection
Method
END OF
PRESENTATION