Metodos Cerrados
Metodos Cerrados
METHOD
BISECTION METHOD
The bisection method
is a root-finding
algorithm which
repeatedly bisects an
interval then selects a
subinterval in which a
root must lie for
further processing. It
is a very simple and
robust method, but it
is also relatively slow.
EXAMPLE
Consider finding the root of f(x) = x^2 - 3. Let εstep = 0.01,
εabs=0.01 and start with the interval [1, 2].
y
Table 1. Bisection method applied to f(x) = x^2 - 3.
(1) Set
(2) For n = 0,1,2.... until convergence criteria is satisfied , do:
(a) Compute
otherwise set
EXAMPLE
Solve for the root in the interval [1,2] by
Regula-Falsi method:
Set
proceed with iteration. Iteration details are provide below in a
tabular form:
FALSE POSITION METHOD
Iteration no. an bn wn F(wn)
0 1.0000000000 2.0000000000 1.4782608747 -2.2348976135
BIBLIOGRAPHY
•http://www.uv.es/etomar/13042/MC_P5_08.pdf
•http://nptel.iitm.ac.in/courses/Webcourse-contents/IIT-
KANPUR/Numerical%20Analysis/numerical-analysis/Rathish-
kumar/ratish-1/f3node3.html
•http://en.wikipedia.org/wiki/False_position_method
•http://www.ece.uwaterloo.ca/~dwharder/NumericalAnalysi
s/10RootFinding/bisection/examples.html
•http://en.wikipedia.org/wiki/Bisection_method
FLOW DIAGRAM