How can I solve this equation
x3 + x – 1 = 0
using fixed point iteration?
Is there any fixed-point iteration code (especially in Python) I can find online?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using scipy.optimize.fixed_point:
The Python code defining
fixed_pointis in scipy/optimize/minpack.py. The exact location depends on wherescipyis installed. You can find that out by typingThe current
fixed_pointsource code can be found online by going to the documentation page and clicking the[source]link.