Next, create a python function newton that will take an initial guess for a root, x0, and will compute a sequence of root approximations. The function should create and return a list of successive approximations to a root. It can stop when the difference between successive approximations is no more than 10-6 .

Solved
Show answers

Ask an AI advisor a question