Question: An important problem in numerical analysis is to find a solution to the equation for some arbitrary F. If the function is continuous and has two points low and high such that and have opposite signs, then a root must exist between low and high and can be found by either a binary search or an interpolation search. Write a function that takes as parameters F, low, and high and solves for a zero. What must you do to ensure termination?