l. Determine the root of the given equation x - 3 = 0 for x ∈ [1, 2] using bisection method. Show all the steps involved in the calculation and tabulate your results. Compare your findings using the quadratic formula.
2. (a) Show the steps to find the root for f(x) = 2 - e^x, and plot its graph for the interval [-1, 1].
(b) Do three iterations of Newton's method (by hand) for f(x) = 2 - e^x, x = 1 for the interval [0, 1].
(c) Write a program using Python that uses Newton's method to find the root of the function, using x, as given. Stop the iteration.
(d) Repeat (c) but use the bisection method to find the root of the function, using the interval as given.
(e) Repeat (d) but use the secant method using the interval as given.
(f) Give an interpretation of your result using all three methods of the given function.