Fundamentals 6 min read

Iterative Methods Compared: Newton, Secant, Modified Newton & Steffensen

This article reviews four common iterative techniques for solving nonlinear equations—Newton's method, the Secant method, the Modified Newton method, and Steffensen's method—detailing their formulas, convergence properties, advantages, disadvantages, and suitable application scenarios, and includes a comparative table and a case study illustrating their performance.

Model Perspective
Model Perspective
Model Perspective
Iterative Methods Compared: Newton, Secant, Modified Newton & Steffensen

1. Newton's Method

Newton's method is an iterative technique based on derivative information. It uses the tangent line at the current iterate to approximate the root, derived from the Taylor expansion of the function.

Iteration formula:

Newton's method is suitable when the derivative is easy to compute and the initial guess is close to the solution, especially in engineering optimization and physical simulation.

2. Secant Method

The Secant method is a derivative‑free variant of Newton's method. It constructs a secant line through two initial points and uses its intersection with the axis as the next iterate, avoiding derivative calculations.

Iteration formula:

The Secant method works well when derivatives are difficult or impossible to compute and is less sensitive to the choice of initial values.

3. Modified Newton Method

The Modified Newton method (also called Simplified Newton) fixes the derivative at the initial point, computing it only once to reduce per‑iteration cost.

Iteration formula:

This approach is advantageous when derivative evaluations are expensive, such as in large‑scale simulations or optimization problems.

4. Steffensen Method

Steffensen's method accelerates a linearly convergent iteration using Aitken's Δ² process, achieving near‑quadratic convergence without requiring derivatives.

Iteration formula:

It is useful for speeding up simple iterative schemes.

Method Comparison

Newton's Method : requires derivative, quadratic convergence, high sensitivity to initial guess, fast and accurate when applicable.

Secant Method : derivative‑free, linear convergence, moderate sensitivity, slower but broadly applicable.

Modified Newton Method : derivative computed once, convergence between linear and quadratic, moderate sensitivity, saves computation when derivatives are costly.

Steffensen Method : derivative‑free, near‑quadratic convergence, moderate sensitivity, fast for simple iterations but limited applicability.

Case Study

A sample nonlinear function combining exponential and quadratic terms was solved using all four methods. Convergence speed and accuracy were plotted.

The results show that Newton's method (identical to the Modified Newton plot) and Steffensen's method converge fastest when a good initial guess is provided, while the Secant method converges more slowly despite not requiring derivative information. Selecting the appropriate method depends on the problem's complexity and the availability of derivative information.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

iterative methodsNewton methodnonlinear equationsnumerical analysisSecant method
Model Perspective
Written by

Model Perspective

Insights, knowledge, and enjoyment from a mathematical modeling researcher and educator. Hosted by Haihua Wang, a modeling instructor and author of "Clever Use of Chat for Mathematical Modeling", "Modeling: The Mathematics of Thinking", "Mathematical Modeling Practice: A Hands‑On Guide to Competitions", and co‑author of "Mathematical Modeling: Teaching Design and Cases".

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.