top of page

FIXED POINT
Is an iterative method that allows solving systems of equations that are not necessarily linear. In particular, it can be used to determine roots of a function of the form f(x), as long as the convergence criteria are met.
​
The fixed-point iteration method, also called the successive approximation method, requires rewriting the equation f(x)=0 in the form x=g(x)
​
Let's call x* the root of f. Suppose that the function g exists and is known such that:
f(x)= x-g(x) ∀ of the domain.
​
so:
f(x*)=0 <->x*-g(x*)=0 <-> x*=g(x)
we have x as a fixed point of g.
​

Information from:
-
Chapra, 2007, Métodos Númericos para ingenieros, 5ta edición, McGraw-Hill
bottom of page