Newton's method can rapidly sum the geometric series
21 Mar 2026Newton’s iteration for computing the reciprocal of ,
can be derived by applying Newton’s method to the function .
Substituting gives
an iteration for computing . Starting from , the first few iterates are
This certainly looks like the geometric series, and after iterations the result is a polynomial of degree .
To verify, substitute
into the Newton iteration. The second factor telescopes to . This is an instruction to take the first factor and add a copy of it multiplied by . The result is
as required.
The sum of a finite geometric series can of course be computed by the formula,
but this involves division. Newton’s iteration uses only addition and multiplication. It just uses them much more economically than the direct series definition, producing a polynomial of degree with only multiplications and additions.
When we discuss factoring a polynomial, we mean factoring it into a product of linear polynomials.
Newton’s iteration instead factors the finite geometric series into a composition of quadratic polynomialsHorner’s method factors a polynomial into a composition of linear polynomials. This is handy for evaluation, but kind of a trivial re-arrangement since it has exactly the same coefficients as standard form..
What other polynomials can be factored this way? Counting free parameters suggests certainly not all of them. Beyond that, I don’t really know, but I think arithmetic circuit complexity considers questions like this.