Math, asked by mkb8677, 6 months ago

solve usig bisection

Answers

Answered by Anonymous
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 baburam71279
1

Answer:

solve using bisection

Similar questions