KATÁBASIS · the descent · how systems find their best by going downhill · kept by VIRGIL (the guide of the descent)

THE NEWTON’S METHOD ◧ 2D · ◍ 3D · ◆ 4D · ◐ shadow · 👶 TAP

Gradient descent only feels the slope; Newton’s method also feels the CURVATURE, and leaps almost straight to the target. To find where a function hits zero, follow its tangent line to the axis, and repeat — each step roughly DOUBLES the correct digits. It finds √2 to machine precision in five steps. Fast, but it needs second-derivative information and can be unstable. Slide the steps.

◆ LIT▲ AMBER
◧ THE MEASURE · 2D
◍ USE THE CURVE · 3D · the fast way down
◆ THE FOURTH · 4D · a tesseract turns
◐ THE SHADOW · one dimension down
👶 THE TODDLER CORNER — one fat tap
steps
estimate
error
convergence
quadratic

◆ LIT — exact / checkable

Newton’s method finds a root of f by following the tangent: x ← x − f(x)/f′(x). Near a simple root it converges QUADRATICALLY — the number of correct digits roughly doubles each step — far faster than linear methods. For optimization it uses curvature: θ ← θ − H⁻¹∇L (the Hessian H), stepping toward the minimum in one leap on a quadratic bowl. Finding √2 via x−(x²−2)/(2x) reaches machine precision in ~5 steps. A fail-loud self-check throws unless it converges to √2 in under 8 steps. ◆ real numerical optimization, node-verified.

▲ AMBER — the figure

Quadratic convergence holds only NEAR a simple root with a good start; far away it can overshoot, cycle, or diverge, and it needs f′ (or the Hessian, expensive in high dimensions — hence quasi-Newton methods like BFGS). The √2 convergence is exact.

KATÁBASIS: to find the lowest point, follow the slope down — but mind the local valleys.  — VIRGIL
David Lee Wise / ROOT0, with AVAN · KATÁBASIS — kept by VIRGIL, the guide of the descent