Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

maximum of a polynomial

I have a polynomial of order N (where N is even). This polynomial is equal to minus infinity for x minus/plus infinity (thus it has a maximum). What I am doing right now is taking the derivative of the polynomial by using polyder then finding the roots of the N-1 th order polynomial by using the roots function in Matlab which returns N-1 solutions. Then I am picking the real root that really maximizes the polynomial. The problem is that I am updating my polynomial a lot and at each time step I am using the above procedure to find the maximizer. Therefore, the roots function takes too much of a computation time making my application slow. Is there a way either in Matlab or a proposed algorithm that does this maximization in a computationally efficient fashion( i.e. just finding one solution instead of N-1 solutions)? Thanks.

Edit: I would also like to know whether there is a routine in Matlab that only returns the real roots instead of roots which returns all real/complex ones.

like image 739
jkt Avatar asked Oct 24 '12 20:10

jkt


People also ask

What is the maximum of a polynomial function?

First of all, by polynomial rules, there will be no absolute maximum or minimum. Since the highest degree term is of degree 3 (odd) and the coefficient is positive (2) , at left of the graph we will be at (−x,−∞) and work our way up as we go right towards (x,∞) . This means there will at most be a local max/min.

What is the maximum degree of a polynomial?

The first term has a degree of 5 (the sum of the powers 2 and 3), the second term has a degree of 1, and the last term has a degree of 0. Therefore, the polynomial has a degree of 5, which is the highest degree of any term.


1 Answers

I think that you are probably out of luck. If the coefficients of the polynomial change at every time step in an arbitrary fashion, then ultimately you are faced with a distinct and unrelated optimisation problem at every stage. There is insufficient information available to consider calculating just a subset of roots of the derivative polynomial - how could you know which derivative root provides the maximum stationary point of the polynomial without comparing the function value at ALL of the derivative roots?? If your polynomial coefficients were being perturbed at each step by only a (bounded) small amount or in a predictable manner, then it is conceivable that you would be able to try something iterative to refine the solution at each step (for example something crude such as using your previous roots as starting point of a new set of newton iterations to identify the updated derivative roots), but the question does not suggest that this is in fact the case so I am just guessing. I could be completely wrong here but you might just be out of luck in getting something faster unless you can provide more information of have some kind of relationship between the polynomials generated at each step.

like image 149
mathematician1975 Avatar answered Oct 13 '22 06:10

mathematician1975