Ch 1.4.16 — Of the Resolution of Equations by Approximation
Summary: When exact algebraic methods are unavailable — especially for degrees above four — Euler presents two iterative numerical techniques: a Newton-like linearization method and a recurrence-series method, both converging to a root from an initial guess.
Sources: chapter-1.4.16
Last updated: 2026-05-03
Why approximation (§784)
When roots are irrational and cannot be expressed by radicals, or when no radical formula exists (degree ≥ 5), one must approximate. The goal is a sequence of values converging to a root with arbitrarily small error.
Method 1: Newton-like linearization (§785–791)
Given that a root lies between and , write where is a small fraction. Substitute into the equation, drop all powers of above the first, and solve the resulting linear equation for . This gives a better approximation , which can be fed back in as a new for another iteration.
For (§787)
Setting and neglecting : , giving and:
This is the classical Babylonian / Heron’s method for square roots. Starting from for :
Each step roughly doubles the number of correct digits.
For (§788)
Setting and neglecting : , giving:
Example for :
For a general cubic (§789)
Setting (note the minus) and neglecting :
(source: §789). This formula coincides with one step of Newton’s method applied to the polynomial.
Example (§790): . Starting from : ; successive iterations converge to the real root.
For degree 5 (§791)
Starting from gives , which is close to the true root.
Method 2: Recurrence series (§792–800)
Form a sequence from the equation’s recurrence, then for large . The ratio converges to the largest real root of the equation.
Deriving the recurrence
If and , etc., substitute into the equation to find a linear recurrence among consecutive terms. Then:
- Any initial values for the first terms generate the whole sequence.
- The series converges to the largest root; successive ratios improve.
Fibonacci example (§793)
: recurrence . Starting from :
Ratios: (golden ratio).
Example: via (§794)
Recurrence . Starting from : . The ratios converge to , and subtracting 1 gives successive approximations to :
General cubic example (§795)
: recurrence . Starting from : . The ratio already satisfies the equation with error .
Limitation: missing second term (§796–797)
When the second term is absent (e.g., ), the recurrence degenerates and ratios oscillate. Fix: substitute to introduce a linear term, then apply the method to .
Convergence to largest root (§798–799)
If the series begins with values that “seed” the largest root, the ratios converge only to that root. To find a smaller root, one must choose initial terms that match the smaller root, or the series will converge to the larger one.
Infinite equation (§800)
requires each term of the series to equal the sum of all preceding terms. This forces the series and the root is exactly (verified by summing the geometric series ).
Comparison of methods (§801)
The linearization method (Method 1) is universally applicable. The recurrence method (Method 2) is sometimes more elegant but requires careful setup and fails outright when the second term is missing.