Math, asked by Ravindar9957, 9 months ago

How to solve questions using bisection method

Answers

Answered by kancharlayuvansai
0

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.

Similar questions