Exercise 15.1#
Question 1#
The roots of the function
Plot
on an interval containing the root.Without using a root finding method from a package, write a function for the bisection method that takes
the initial interval
the tolerance/precision
as arguments.
Verify your function by using it to find the root. Test a few values for the initial interval, what if you pick the value of the root?
Hint:
Functions are like any other Python object and can be set as the value of a variable or argument.
Question 2#
The function
Plot
over the given interval and take note of roughly where these roots lie.Find each of these roots using the function you defined in Question 1. Plot a curve for
and dots where you have found the roots.