Polynomials

home1 home2
 Bib
 Algorithms
 Bioinfo
 FP
 Logic
 MML
 Prog.Lang
and the
 Book

Algorithms
 glossary
 Numerical
  Num'Errors
  Polynomials
  Stirling
  Mean&S.D.
  Integration

Evaluation by Horner's Rule

Given a polynomial of degree n,

p(x) = anxn + an-1xn-1 + ... + a1x1 + a0
one might suspect that n+(n-1)+(n-2)+...+1 = n(n+1)/2 multiplications would be needed to evaluate p(x) for a given x. However Horner's Rule shows that it can be rewritten so that only n multiplications are needed:
p(x) = (((anx + an-1)x + an-2)x + ... a1)x + a0

Incidentally, this is exactly the way that integer constants are evaluated from strings of characters (digits):

12345 = 1*104 + 2*103 + 3*102 + 4*101 + 5*100
      = (((1*10 + 2)*10 + 3*10 + 4)*10 + 5

- just think of the digit values as the coefficients and the `base' of the number system as x.

Horner's rule also pops up for calculating the "rolling hash value"in Rabin's [string searching] algorithm.

-- 1999 L.A.

Coding Ockham's Razor, L. Allison, Springer

A Practical Introduction to Denotational Semantics, L. Allison, CUP

Linux
 Ubuntu
free op. sys.
OpenOffice
free office suite
The GIMP
~ free photoshop
Firefox
web browser

© L. Allison   http://www.allisons.org/ll/   (or as otherwise indicated),
Faculty of Information Technology (Clayton), Monash University, Australia 3800 (6/'05 was School of Computer Science and Software Engineering, Fac. Info. Tech., Monash University,
was Department of Computer Science, Fac. Comp. & Info. Tech., '89 was Department of Computer Science, Fac. Sci., '68-'71 was Department of Information Science, Fac. Sci.)
Created with "vi (Linux + Solaris)",  charset=iso-8859-1,  fetched Friday, 19-Apr-2024 08:31:18 AEST.