1. Similarly to how we used Newton's method to design algorithms for computing square root and cubic root, design an algorithm for computing the logarithm x = ln(a) as a solution to the equation
3. Use numerical differentiation to compute the derivative of the function x2 − x when x = 1.
4. Use linearization technique and your estimate for the derivative to estimate the range of this function when x is in the interval [0.9, 1.1].
5. Use naive interval computations to estimate the same range.
6. Use mean value form to estimate the same range.