MÉTHODOS · the way · numerical methods: how a machine computes real answers to continuous problems, one controlled approximation at a time · kept by HERON (Hero of Alexandria, the ancient numerical algorithmist)

THE NEWTON-RAPHSON METHOD ◧ 2D · ◍ 3D · ◆ 4D · ◐ shadow · 👶 TAP

To find where a curve crosses zero, stand at a guess, slide down the TANGENT line to where IT hits zero, and stand there instead — repeat. Each step roughly DOUBLES the number of correct digits, so a handful of steps nails a root to machine precision. It’s how calculators do square roots and how solvers find equilibria. Slide to step and watch the guess rocket onto the root.

◆ LIT▲ AMBER
◧ THE MEASURE · 2D
◍ RIDE THE TANGENT · 3D · each step DOUBLES the correct digits
◆ THE FOURTH · 4D · a tesseract turns
◐ THE SHADOW · one dimension down
👶 THE TODDLER CORNER — one fat tap
current guess
error
convergence
quadratic
root of x²−2
√2

◆ LIT — exact / checkable

Newton–Raphson finds a root of f by linearizing: from a guess xₙ, follow the tangent to its own zero, xₙ₊₁=xₙ−f(xₙ)/f′(xₙ). Near a simple root convergence is QUADRATIC — the error squares each step, doubling the correct digits — so √2 (root of x²−2) reaches full double precision in ~6 steps. It generalizes to systems (with the Jacobian) and underlies most nonlinear solvers and optimizers. A fail-loud self-check throws unless iterating on x²−2 reaches √2 to 1e−12. ◆ real numerical methods, node-verified.

▲ AMBER — the figure

Newton needs the derivative and a decent starting guess: it can diverge, cycle, or stall at f′=0, and convergence drops to linear at multiple roots. The quadratic-convergence and tangent-step math are exact.

MÉTHODOS: the continuous is never solved, only APPROACHED — the art is bounding the error.  — HERON
David Lee Wise / ROOT0, with AVAN · MÉTHODOS — kept by HERON, the reckoner