1. Similarly to how we used Newton's method to design algorithms for computing square root and cubic root, design an algorithm for solving the equation ex = r * x, where r is given.
3. Use numerical differentiation to compute the derivative of the function x2 + 2 * x + 1 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.8, 1.2].
5. Use naive interval computations to estimate the same range.
6. Use mean value form to estimate the same range.