Comparative numerical laboratory

Root-Finding Methods on the Same Problem — Chapter 2

Compare bisection, Newton, secant, and fixed-point iteration for \(f(x)=x^3-2\).

\[ f(x)=x^3-2, x_\ast=\sqrt[3]{2}. \]

Methods compared

MethodConvenienceInconvenience / warning
BisectionGuaranteed under a sign change; bracket is preserved.Linear convergence; slow when high precision is required.
NewtonQuadratic local convergence for simple roots.Needs derivative and a good initial value.
SecantDerivative-free and superlinear.No bracket preservation; can fail from poor starts.
Fixed pointUseful when a good contraction is available.Convergence depends entirely on the chosen map.

Illustrative plot / animation

Numerical diagnostics

What the student must compare