Question: Exercise 2: (2 pts, autograded) Using the code from the lecture that computes the approximate square root of a number using bisection Search Complete the
Exercise 2: (2 pts, autograded) Using the code from the lecture that computes the approximate square root of a number using bisection Search Complete the function my cube_root (x) below, which takes in a real number x and computes its approximate cube root with tolerance 01. Make sure you use conditionals to return of X and also make sure it handles negative numbers. Exercise 2: (2 pts, autograded) Using the code from the lecture that computes the approximate square root of a number using bisection search, complete the function my_cube_root (x) below, which takes in a real number x and computes its approximate cube root with tolerance.01. Make sure you use conditionals to return of Xe and also make sure it handles negative numbers. ]: def my_cube_root (x): epsilon-.01. tolerance for error in computing cube root # YOUR CODE HERE raise Not ImplementedError()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
