1 minute read

Iteration

Finding The Roots Of An Equation



Various methods and formulas exist for finding the roots of equations by iteration. One of the most general methods is called the method of successive bisection. This method can be used to find solutions to many equations. It involves finding solutions by beginning with two approximate solutions, one that is known to be too large and one that is known to be too small, then using their average as a third approximate solution. To arrive at a fourth approximation, it is first determined whether the third approximation is too large or too small. If the third approximation is too large it is averaged with the most recent previous approximation that was too small, or the other way around; if approximation number three is too small it is averaged with the most recent previous approximation that was too large. In this way, each successive approximation gets closer to the correct solution.



Testing each successive approximation is done by substituting it into the original equation and comparing the result to zero. If the result is greater than zero then the approximation is too large, and if the result is less than zero, then the approximation is too small.

Iteration has many other applications. In proof, for example, mathematical induction is a form of iteration. Many computer programs use iteration for looping.


Resources

Books

Larson, Ron. Calculus With Analytic Geometry. Boston: Houghton Mifflin College, 2002.


J.R. Maddocks

KEY TERMS

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Roots of an equation

—The roots of an equation are those values of the independent variable that make it a true statement. They are also called solutions of the equation.

Additional topics

Science EncyclopediaScience & Philosophy: Intuitionist logic to KabbalahIteration - Finding the roots of an equation