Back What's new
  • Update Regarding Multitracks + Registration

    It's clear that this thread needs some love and attention. A lot of the links have either expired or been miss-labelled. With the amount of tracks there are, this is quite a practice. I have made the decision to lock this thread from further replies and to put out this notice that I will be refreshing this thread with updated links and guidance where needed.

    I will update the thread on multitracks and the first post with any forth coming updates about this in due course. For information - I have also disabled user registrations to do some tidyup. Stay tuned.

horn's

In mathematics and computer science, Horner's method (or Horner's scheme) is an algorithm for polynomial evaluation. Although named after William George Horner, this method is much older, as it has been attributed to Joseph-Louis Lagrange by Horner himself, and can be traced back many hundreds of years to Chinese and Persian mathematicians. After the introduction of computers, this algorithm became fundamental for computing efficiently with polynomials.
The algorithm is based on Horner's rule:









a

0





+

a

1


x
+

a

2



x

2


+

a

3



x

3


+

+

a

n



x

n








=

a

0


+
x


(



a

1


+
x


(



a

2


+
x


(



a

3


+

+
x
(

a

n

1


+
x


a

n


)



)




)




)


.






{\displaystyle {\begin{aligned}a_{0}&+a_{1}x+a_{2}x^{2}+a_{3}x^{3}+\cdots +a_{n}x^{n}\\&=a_{0}+x{\bigg (}a_{1}+x{\Big (}a_{2}+x{\big (}a_{3}+\cdots +x(a_{n-1}+x\,a_{n})\cdots {\big )}{\Big )}{\bigg )}.\end{aligned}}}
This allows the evaluation of a polynomial of degree n with only



n


{\displaystyle n}
multiplications and



n


{\displaystyle n}
additions. This is optimal, since there are polynomials of degree n that cannot be evaluated with fewer arithmetic operations.Alternatively, Horner's method also refers to a method for approximating the roots of polynomials, described by Horner in 1819. It is a variant of the Newton–Raphson method made more efficient for hand calculation by the application of Horner's rule. It was widely used until computers came into general use around 1970.

Please Log in to view URLs that have been listed here. It's free and quick.
Back
Top