solve usig bisection
Answers
Answered by
1
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.
Answered by
1
Answer:
solve using bisection
Similar questions