I know about the convergence of the bisection method. I was wondering if we could find an equality or an inequality between x_n-x_{n-1} (successive sequences made while using the method) and $(a,b)$ where $(a,b)$ is the interval we need to find the root in. the approximate error is 0.5. so what can we say about x_n-x_{n-1}, when we know that xn - p <{\frac {|b-a|}{2^{n}}}.
This formula can be ? (p is the root for example)
For the bisection method, $\lvert x_n-x_{n-1}\rvert=2^{-n}(b-a)$ (either sign is possible at any step, depending on the function). That's kind of the point of the algorithm. You can prove this by induction using the fact that $x_n$ is the mid-point of a segment of length $2^{1-n}(b-a)$ having $x_{n-1}$ as one of the endpoints.