Nested Scheme (Help, I need a definition/explanation)

  • Thread starter Thread starter Atran
  • Start date Start date
AI Thread Summary
Nested scheme, also known as Horner's scheme, is an efficient method for evaluating polynomials. It rewrites a polynomial in a nested form to minimize the number of multiplications and additions required. For instance, the polynomial f(x) = 2x^3 - 6x^2 + 2x - 1 can be expressed as f(x) = x(x(2x - 6) + 2) - 1. This technique is particularly useful for simplifying calculations in numerical methods. Understanding this method is essential for grasping more advanced topics in polynomial evaluation.
Atran
Messages
93
Reaction score
1
Hi, I'm reading about polynomials and I've encountered a method called nested scheme.
The tragedy is that my math book usually has no rigorous definitions and sometimes lacks definitions.
My book is only stating that nested scheme is a method for evaluating polynomials, and thereafter it continues with two examples. It does not provide an explanation.

I cannot find any proper link, for nested scheme, in google. Can you teach me the very basics, and that should be sufficient for the understanding of more advanced topics...
Thanks for help...
 
Mathematics news on Phys.org
This sounds like something that is called Horner scheme, a technique for evaluating polynomials efficiently.

For example, f(x) = 2x3 - 6x2 + 2x - 1 can be rewritten as f(x) = x(x(2x - 6) + 2) - 1.

More information here - http://en.wikipedia.org/wiki/Horner_scheme
 
Thanks...
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
Back
Top