Root finding methods for Polynomials.

  • Thread starter Thread starter mhill
  • Start date Start date
  • Tags Tags
    Polynomials Root
AI Thread Summary
Root finding methods for polynomials can effectively identify both real and complex roots, with techniques like Bairstow's method being particularly useful. This method allows for the determination of all roots, including those with larger and smaller real parts. MATLAB offers a numerical approach that converts the problem into an eigenvalue problem, ensuring fast convergence and accuracy when eigenvalues are well separated. A good starting value is essential for successful implementation of these algorithms. Overall, various methods exist to accurately find polynomial roots, including complex ones.
mhill
Messages
180
Reaction score
1
Hi , is there a method to obtain the roots of Polynomials:

P(x)=a_{0}+a_{1}x+a{2}x^{2}+...+a_{n}x^{n}

i know there are , but my problem is this if we knew that are complex roots of the form z=a+ib , would be a method to obtain the complex root with BIGGER and SMALLER real part ?? , i mean for example if a POlynomial has complex root:

1+3i 1-3i 0.6+8i 0.6-8i 0.01+34i 0.01-34i ...

my question is if we could use a root finding algorithm to check that the bigger part of the roots is '1'
 
Last edited:
Mathematics news on Phys.org
I'm not sure what you mean. Matlab has a good method for finding the roots numerically. It transfers the roots of polynomial to an eigvenvalue problem. It converges quite fast and will give you all the roots. It is quite accurate if the eignvalues are well separated.
 
One method to find all roots is the one of Bairstow. This gives you not only the real, but also the complex ones. Look here for some info, and google a bit to find some more:

http://en.wikipedia.org/wiki/Bairstow's_method

The implementation is not that difficult, I've done it and it works fine. The only thing to take care of is a good starting value, but even that can be solved.
 
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