Use python to Write a function Newton_method(start, derivative,tolerance) to implement Newton-Raphson method. The input start is aguess of the root, derivative is the derivative function, andtolerance is the precision value for the stopping criterion. Usethis function to find the minimal value for
Solution