Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the rootfinding problem f(x)=0 with root α, with f´(x)≠0.

Convert it to the fixed-point problem

x=x+cf(x)≡g(x) with c a nonzero constant.

How should c be chosen to ensure rapid convergence of x_{n+1}=x_{n}+cf(x_{n}) to α (Provided that x_{0} is chosen sufficiently close to α)?

Apply your way of choosing c to the rootfinding problem x^3-5=0

Does anyone could help me with this exercise please?

share|improve this question
This is maths, not programming, therefore off-topic. – High Performance Mark Nov 22 '12 at 15:07
You are applying Newton's method: http://en.wikipedia.org/wiki/Newton's_method. If you read the Practical considerations section of the same you should find your answer. – The Mouth of a Cow Nov 22 '12 at 15:10

closed as off topic by Brian Agnew, High Performance Mark, Eitan T, Shawn Chin, Bart Nov 22 '12 at 15:49

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.