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...
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Back
Top