Horner's method
In mathematics, Horner's method (also known as Horner scheme in the UK or Horner's rule in the U.S.[1][2]) is either of two things: (i) an algorithm for calculating polynomials, which consists in transforming the monomial form into a computationally efficient form;[2] or (ii) a method for approximating the roots of a polynomial.[3] The latter is also known as Ruffini–Horner's method.[4]
These methods are named after the British mathematician William George Horner. It is now established that both methods were known before him.[5]
Contents |
[edit] Description of the algorithm
Given the polynomial
where
are real numbers, we wish to evaluate the polynomial at a specific value of x, say x0.
To accomplish this, we define a new sequence of constants as follows:
Then b0 is the value of p(x0).
To see why this works, note that the polynomial can be written in the form
Thus, by iteratively substituting the
into the expression,
[edit] Examples
Evaluate
for
.
We use synthetic division as follows:
x₀│ x³ x² x¹ x⁰
3 │ 2 −6 2 −1
│ 6 0 6
└────────────────────────
2 0 2 5
The entries in the third row are the sum of those in the first two. Each entry in the second row is the product of the x-value (3 in this example) with the third-row entry immediately to the left. The entries in the first row are the coefficients of the polynomial to be evaluated. Then the remainder of
on division by
is 5.
But by the remainder theorem, we know that the remainder is
. Thus 
In this example, if
we can see that
, the entries in the third row. So, synthetic division is based on Horner's method.
As a consequence of the polynomial remainder theorem, the entries in the third row are the coefficients of the second-degree polynomial, the quotient of
on division by
. The remainder is 5. This makes Horner's method useful for polynomial long division.
Divide
by
:
2 │ 1 -6 11 -6
│ 2 -8 6
└────────────────────────
1 -4 3 0
The quotient is
.
Let
and
. Divide
by
using Horner's method.
2 │ 4 -6 0 3 │ -5
────┼──────────────────────┼───────
1 │ 2 -2 -1 │ 1
│ │
└──────────────────────┼───────
2 -2 -1 1 │ -4
The third row is the sum of the first two rows, divided by 2. Each entry in the second row is the product of 1 with the third-row entry to the left. The answer is
[edit] Floating point multiplication and division
Horner's method is a fast, code-efficient method for multiplication and division of binary numbers on a microcontroller with no hardware multiplier. One of the binary numbers to be multiplied is represented as a trivial polynomial, where, (using the above notation): ai = 1, and x = 2. Then, x (or x to some power) is repeatedly factored out. In this binary numeral system (base 2), x = 2, so powers of 2 are repeatedly factored out.
[edit] Example
For example, to find the product of two numbers, (0.15625) and m:
[edit] Method
To find the product of two binary numbers, "d" and "m".
- 1. A register holding the intermediate result is initialized to (d).
- 2. Begin in (m) with the least significant (rightmost) non-zero bit,
- 2b. Count (to the left) the number of bit positions to the next most significant non-zero bit. If there are no more-significant bits, then take the value of the current bit position.
- 2c. Using that value, perform a right-shift operation by that number of bits on the register holding the intermediate result
- 3. If all the non-zero bits were counted, then the intermediate result register now holds the final result. Otherwise, add (d) to the intermediate result, and continue in step #2 with the next most significant bit in (m).
[edit] Derivation
In general, for a binary number with bit values: (
) the product is:
At this stage in the algorithm, it is required that terms with zero-valued coefficients are dropped, so that only binary coefficients equal to one are counted, thus the problem of multiplication or division by zero is not an issue, despite this implication in the factored equation:
The denominators all equal one (or the term is absent), so this reduces to:
or equivalently (as consistent with the "method" described above):
In binary (base 2) math, multiplication by a power of 2 is merely a register shift operation. Thus, multiplying by 2 is calculated in base-2 by an arithmetic shift. The factor (2−1) is a right arithmetic shift, a (0) results in no operation (since 20 = 1, is the multiplicative identity element), and a (21) results in a left arithmetic shift. The multiplication product can now be quickly calculated using only arithmetic shift operations, addition and subtraction.
The method is particularly fast on processors supporting a single-instruction shift-and-addition-accumulate. Compared to a C floating-point library, Horner's method sacrifices some accuracy, however it is nominally 13 times faster (16 times faster when the "canonical signed digit" (CSD) form is used), and uses only 20% of the code space.[6]
[edit] Polynomial root finding
Using Horner's method in combination with Newton's method, it is possible to approximate the real roots of a polynomial. The algorithm works as follows. Given a polynomial
of degree
with zeros
, make some initial guess
such that
. Now iterate the following two steps:
1. Using Newton's method, find the largest zero
of
using the guess
.
2. Using Horner's method, divide out
to obtain
. Return to step 1 but use the polynomial
and the initial guess
.
These two steps are repeated until all real zeros are found for the polynomial. If the approximated zeros are not precise enough, the obtained values can be used as initial guesses for Newton's method but using the full polynomial rather than the reduced polynomials.[7]
[edit] Example
Consider the polynomial,
which can be expanded to
From the above we know that the largest root of this polynomial is 7 so we are able to make an initial guess of 8. Using Newton's method the first zero of 7 is found as shown in black in the figure to the right. Next
is divided by
to obtain,
which is drawn in red in the figure to the right. Newton's method is used to find the largest zero of this polynomial with an initial guess of 7. The largest zero of this polynomial which corresponds to the second largest zero of the original polynomial is found at 3 and is circled in red. The degree 5 polynomial is now divided by
to obtain,
which is shown in yellow. The zero for this polynomial is found at 2 again using Newton's method and is circled in yellow. Horner's method is now used to obtain,
which is shown in green and found to have a zero at −3. This polynomial is further reduced to
which is shown in blue and yields a zero of −5. The final root of the original polynomial may be found by either using the final zero as an initial guess for Newton's method, or by reducing
and solving the linear equation. As can be seen, the expected roots of −8, −5, −3, 2, 3, and 7 were found.
[edit] Octave implementation
The following Octave code was used in the example above to implement Horner's method.
function [y b] = horner(a,x) % Input a is the polynomial coefficient vector, x the value to be evaluated at. % The output y is the evaluated polynomial and b the divided coefficient vector. b(1) = a(1); for i = 2:length(a) b(i) = a(i)+x*b(i-1); end y = b(length(a)); b = b(1:length(b)-1); end
[edit] Python implementation
The following Python code implements Horner's method.
def horner(x, *args): """A function that implements the Horner Scheme for evaluating a polynomial of coefficients *args in x.""" result = 0 for coefficient in args: result = result * x + coefficient return result
[edit] Application
Horner's method can be used to convert between different positional numeral systems – in which case x is the base of the number system, and the ai coefficients are the digits of the base-x representation of a given number – and can also be used if x is a matrix, in which case the gain in computational efficiency is even greater. In fact, when x is a matrix, further acceleration is possible which exploits the structure of matrix multiplication, and only
instead of n multiplies are needed (at the expense of requiring more storage) using the 1973 method of Paterson and Stockmeyer[8].
[edit] Efficiency
Evaluation using the monomial form of a degree-n polynomial requires at most n additions and (n2 + n)/2 multiplications, if powers are calculated by repeated multiplication and each monomial is evaluated individually. (This can be reduced to n additions and 2n − 1 multiplications by evaluating the powers of x iteratively.) If numerical data are represented in terms of digits (or bits), then the naive algorithm also entails storing approximately 2n times the number of bits of x (the evaluated polynomial has approximate magnitude xn, and one must also store xn itself). By contrast, Horner's method requires only n additions and n multiplications, and its storage requirements are only n times the number of bits of x. Alternatively, Horner's method can be computed with n fused multiply–adds. Horner's method can also be extended to evaluate the first k derivatives of the polynomial with kn additions and multiplications.[9]
Horner's method is optimal, in the sense that any algorithm to evaluate an arbitrary polynomial must use at least as many operations. Alexander Ostrowski proved in 1954 that the number of additions required is minimal. Victor Pan proved in 1966 that the number of multiplications is minimal. However, when x is a matrix, Horner's method is not optimal.
This assumes that the polynomial is evaluated in monomial form and no preconditioning of the representation is allowed, which makes sense if the polynomial is evaluated only once. However, if preconditioning is allowed and the polynomial is to be evaluated many times, then faster algorithms are possible. They involve a transformation of the representation of the polynomial. In general, a degree-n polynomial can be evaluated using only
multiplications and n additions (see Knuth: The Art of Computer Programming, Vol.2).
[edit] History
According to Augustus De Morgan, Horner made his method known in a paper titled "A new method of solving numerical equations of all orders, by continuous approximation", which was read on July 1, 1819 by Davies Gilbert before the Royal Society of London. This paper was subsequently published in the same year in the "Philosophical Transactions".[11][12]
De Morgan's advocacy of Horner's priority in discovery[5][13] led to "Horner's method" being so called in textbooks. However, this method was known long before. In reverse chronological order, Horner's method was already known to:
- Paolo Ruffini in 1809 (see Ruffini's rule)[13][5]
- Isaac Newton in 1669
- the Chinese mathematician Zhu Shijie in the 14th century[13]
- the Chinese mathematician Qin Jiushao in his Mathematical Treatise in Nine Sections in the 13th century
- the Persian mathematician Sharaf al-Dīn al-Tūsī in the 12th century[14]
- the Chinese mathematician Jia Xian in the 11th century (Song Dynasty)
- The Nine Chapters on the Mathematical Art, a Chinese work of the Han Dynasty (202 BC – 220 AD) edited by Liu Hui (fl. 3rd century).[15]
[edit] See also
- Clenshaw algorithm to evaluate polynomials in Chebyshev form
- De Boor's algorithm to evaluate splines in B-spline form
- De Casteljau's algorithm to evaluate polynomials in Bézier form
- Estrin's scheme to facilitate parallelization on modern computer architectures
- Lill's method to approximate roots graphically
- Ruffini's rule to divide a polynomial by a binomial of the form x − r
[edit] References
- ^ Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein (2009). Introduction to Algorithms (3rd ed.). MIT Press. pp. 41, 900, 990.
- ^ a b "Wolfram MathWorld: Horner's Rule". http://mathworld.wolfram.com/HornersRule.html.
- ^ "Wolfram MathWorld: Horner's Method". http://mathworld.wolfram.com/HornersMethod.html.
- ^ "French Wikipedia: Méthode de Ruffini-Horner". http://fr.wikipedia.org/wiki/M%C3%A9thode_de_Ruffini-Horner.
- ^ a b c Florian Cajori, Horner's method of approximation anticipated by Ruffini, Bulletin of the American Mathematical Society, Vol. 17, No. 9, pp. 409–414, 1911 (read before the Southwestern Section of the American Mathematical Society on November 26, 1910).
- ^ Kripasagar, March 2008, "Efficient Micro Mathematics", Circuit Cellar, issue 212, p. 62.
- ^ Kress, Rainer, "Numerical Analysis", Springer, 1991, p.112.
- ^ Higham, Nicholas. (2002). Accuracy and Stability of Numerical Algorithms. Philadelphia: SIAM. ISBN 0898715210. Section 5.4.
- ^ W. Pankiewicz. "Algorithm 337: calculation of a polynomial and its derivative values by Horner scheme". http://portal.acm.org/citation.cfm?doid=364063.364089.
- ^ Urich Librecht Chinese Mathematics in the Thirteenth Century, p181–191, Dover ISBN 0-486-44619-0
- ^ William George Horner (July 1819). "A new method of solving numerical equations of all orders, by continuous approximation". Philosophical Transactions (Royal Society of London): pp. 308–335.
- ^ "JSTOR archive of the Royal Society of London". http://www.jstor.org/stable/107508.
- ^ a b c O'Connor, John J.; Robertson, Edmund F., "Horner's method", MacTutor History of Mathematics archive, University of St Andrews, http://www-history.mcs.st-andrews.ac.uk/Biographies/Horner.html.
- ^ J. L. Berggren (1990). "Innovation and Tradition in Sharaf al-Din al-Tusi's Muadalat", Journal of the American Oriental Society 110 (2), p. 304–309.
- ^ Temple, Robert. (1986). The Genius of China: 3,000 Years of Science, Discovery, and Invention. With a forward by Joseph Needham. New York: Simon and Schuster, Inc. ISBN 0671620282. Page 142.
[edit] Bibliography
- Horner, William George (July 1819). "A new method of solving numerical equations of all orders, by continuous approximation". Philosophical Transactions (Royal Society of London): pp. 308–335.
- Spiegel, Murray R. (1956). Schaum's Outline of Theory and Problems of College Algebra. McGraw-Hill Book Company.
- Knuth, Donald (1997). The Art of Computer Programming. Vol. 2: Seminumerical Algorithms (3rd ed.). Addison-Wesley. pp. 486–488 in section 4.6.4. ISBN 0-201-89684-2.
- Kripasagar, Venkat (March 2008). "Efficient Micro Mathematics – Multiplication and Division Techniques for MCUs". Circuit Cellar magazine (212): p. 60.




for
.
![\begin{align}
( 0.15625) m & = (0.00101_b) m = ( 2^{-3} + 2^{-5}) m = (2^{-3})m + (2^{-5})m \\[4pt]
& = 2^{-3} (m + (2^{-2})m) = 2^{-3} (m + 2^{-2} (m)).
\end{align}](http://upload.wikimedia.org/wikipedia/en/math/5/1/b/51b312a929ec87780ce57bd9762f2066.png)











