using the bisection method.
Find a real root of the equation 2 xqub + x square- 20 x + 12 - 0 by using the bisection method correct to
three decimal places
nemuation -57-30 using bisection method correct to first three decimal
Answers
Answered by
0
Answer:
Bisection Method Algorithm
Find two points, say a and b such that a < b and f(a)* f(b) < 0.
Find the midpoint of a and b, say “t”
t is the root of the given function if f(t) = 0; else follow the next step.
Divide the interval [a, b]
If f(t)*f(b) <0, let a = t.
Else if f(t) *f(a), let b = t.
Step-by-step explanation:
this is the bisection method
Similar questions