I have to approximate the root of the equation $x^3 -4x - 9 = 0$ by using the Bisection method from my numerical methods class. The question also states that I have to iterate the process until my relative approximation error gets below a specified error ($\epsilon_s$) of 0.1%. I have no problem of solving the question, but what I wonder is the step of finding the relative approximate error.
The formula for calculating relative approximate error is: $$\epsilon_a = \frac{current\,approximate-previous\,approximation}{current\,approximation} $$
I wonder why relative approximate error isn't calculated by dividing by the previous approximation instead? I think it is a way to see how improved our current approximation is compared to the previous one.