Post Lab-2
Post Lab-2
Experiment No: 02
Prepared by:
COMMENT: In Exact relative error vs Iteration curve , the relative errors decrease with each
iteration and creates a smooth line. But True relative error vs Iteration curve the true relative
error decrease discontinuously and create a seedy pattern.
ADVANTAGES:
1. The bisection method is always convergent. Since the method brackets the root, the
method is guaranteed to converge.
2. As iterations are conducted, the interval gets halved. So one can guarantee the error in the
solution of the equation.
3. Bisection can be shown to be an "optimal" algorithm for functions that change sigh in
[a,b] in that it produces the smallest interval of uncertainty in a given # of iterations
4. f(x) need not be continuous on [a,b]
5. convergence is guaranteed (linearly)
6. the bisection method discards 50% of the current interval at each step, it brackets the root
much more quickly than the incremental search method does.
7. To compare:
On average, assuming a root is somewhere on the interval between 0 and 1, it takes 6–7 function
evaluations to estimate the root to within 0.1 accuracy.
Those same 6–7 function evaluations using bisection estimates the root to within 1 24 = 0.625 to
1 25 = 0.031 accuracy.
DISADVANTAGES:
1. the bisection method only finds roots where the function crosses the x axis. It cannot find
roots where the function is tangent to the x axis.
2. the bisection method can be fooled by singularities in the function.
3. the bisection method cannot find complex roots of polynomials
4. Two initial guesses are required, with f (a) f (b) <0. This may prove difficult
5. If there are multiple zeros in the interval there is no guidance as to which will be chosen
6. Linear convergence may be slow compared to other methods
CONCLUSION: By this experiment we know that determine root in bisection method. We also
learnt mat lab by using for loop and if else condition. In the lab hours we face some problem we
first time not understood why xc old=0 the condition. We discover that the error is decreasing
and it is true for both errors.