Tagged Questions

4
votes
2answers
142 views

Newtons Method in Python

I'm writing a program in python that will solve for zeros using newtons method. I finished writing the rough version of it, then realized a couple different things and was wondering if I need to ...
1
vote
1answer
553 views

Implementing a Newton-Raphson iteration method

I'm trying to implement a backward Euler Scheme using the Newton Raphson iteration. I understand that with each iteration, one makes an initial guess, calculates the residual and solve for the change. ...