Sahithyan's S2 — Methods of Mathematics
Fixed Point Method
The number
Existence and uniqueness of a fixed point
If
If in addition,
Then
Iteration algorithm
Start with
Implementation
def fixed_point(g, p0, tolerance=1e-6, max_iteration_count=100): p = p0 for _ in range(max_iteration_count): p_new = g(p) if abs(p_new - p) < tolerance: return p_new p = p_new raise ValueError("Fixed point not found")
Fixed point theorem
Suppose:
exists on and
Then
and