Approximation Methods for Equations

Summary: Two iterative methods for finding roots numerically when no exact algebraic formula is available: a Newton-like linearization (Method 1) and a recurrence-series ratio method (Method 2), both described by Euler in Chapter XVI.

Sources: chapter-1.4.16, additions-1

Last updated: 2026-05-10


Context

When equations exceed degree 4, or when the roots of lower-degree equations are irrational, exact algebraic solutions may be unwieldy or non-existent (source: chapter-1.4.16, §784). Approximation gives a sequence of rational numbers converging to a root.

Method 1: Newton-like Linearization

Given an initial estimate close to a root, write (or ). Substitute into the equation and drop all powers of above the first; solve the resulting linear equation for .

The corrected value is a better approximation, and can be used as a new for the next iteration.

Formulas for pure power equations

EquationIterative formula

These are classical Babylonian / Heron formulas. Both converge very rapidly (roughly squaring the number of correct digits per step).

General polynomial

For the formula is (source: §789):

For degree , the denominator is the derivative of the polynomial evaluated at — this is Newton’s method, though Euler does not name it as such.

Applicability

Works for all degrees and all equation types. The main requirement is a reasonably close initial estimate. If the initial guess is too far off (as in §791 with for ), the correction can overshoot; choosing recovers accuracy.

Method 2: Recurrence Series

Build a sequence whose recurrence is derived from the equation. The ratio converges to the largest real root of the equation.

Deriving the recurrence

For the equation , set for all . Substituting gives:

A linear recurrence in with the same coefficients as the equation.

Key examples

EquationRecurrenceSeries (starting 0,1)Root

The Fibonacci sequence arises naturally as the approximation sequence for the golden ratio.

Convergence to largest root

The series always converges to the greatest root. For the smaller root, the initial terms must be chosen to match that root exactly, otherwise the series drifts toward the larger root (source: §799).

Limitation: missing second term

When the equation lacks an term (e.g., ), the recurrence has zero coefficient for the preceding term, and consecutive ratios oscillate between two values rather than converging. Fix: substitute (or another shift) to introduce a linear term before building the series.

Infinite-degree equation (§800)

Euler notes that requires each series term to equal the sum of all predecessors, forcing the series . This gives root (also confirmed analytically by summing the geometric series).

Comparison

Euler concludes (§801) that Method 1 deserves preference for its universality. Method 2 is elegant but requires the equation to be in a compatible form, fails when the second term is missing, and only converges to the largest root automatically.

Method 3: Continued-Fraction Root Extraction (Lagrange, Add. I, Art. 9)

Lagrange supplies a third approach in his first Addition. Given an equation in , find the integer nearest a root and substitute — the resulting equation in has a root . Find its integer part , substitute , and so on. The root is then expressed as

The CF terminates iff the root is rational; otherwise it goes on indefinitely, with each truncation a best rational approximation to the root.

This method has two advantages over Methods 1–2:

  1. It detects rationality automatically (terminating expansion ⇔ rational root).
  2. The successive truncations have provable error bounds (see convergents), which Newton’s method does not provide a priori.

See continued-fractions and add1-continued-fractions for the full theory; the connection to roots of quadratics is developed further in subsequent Additions.