This document discusses the fixed point iteration method for solving nonlinear equations numerically. It begins with an overview of the method, explaining that it involves rewriting equations in the form x=g(x) and then iteratively calculating xn+1=g(xn) until convergence. The document then provides an example of using the method to solve the equation x3+x2-1=0. It shows rewriting the equation, choosing an initial guess, iteratively calculating the next value of x, and checking for convergence. The document concludes by explaining how to implement the fixed point iteration method numerically using loops in code.