The Fixed Point Method is a numerical technique used to find approximate solutions to equations of the formx=g(x). It iteratively refines an initial guess until convergence is achieved.
Given a function:
f(x)=0
x=g(x)
How the Fixed Point Method Works
Rearrangement: Rearrange the equation to the form x=g(x).
Initial Guess: Choose an initial approximation x0.
Iteration: Use the function to compute:
xn+1=g(xn)
Repeat until convergence.
Convergence Check: Stop when ∣xn+1−xn∣<extErrormargin.
Example
Given Function:
x2−4
Error Margin is 0.01
Step 1: Initial Guess:
x0=1
Step 2: Rearranged Function:
x0=1tog(x0)=4=2
Step 3: First Iteration:
x1=g(x0)=4=2
∣x1−x0∣=∣2−1∣=1
Since∣x1−x0∣>0.01, continue iterating.
Step 4: Second Iteration:
x2=g(x1)=4=2
∣x2−x1∣=∣2−2∣=0
Since∣x2−x1∣<0.01, we have converged.
Result:
x≈2
Conclusion
The Fixed Point Method is an effective approach for solving equations of the form f(x)=0. In this example, we showed that the solution converges to x=2. The method guarantees convergence under suitable conditions on the function g(x).