Finding local and absolute maxima values of a polynomial
10 次查看(过去 30 天)
显示 更早的评论
I have a polynomial of 3.3x^6 - 23.63x^5 + 65.18x^4 - 86.97x^3 + 56x^2 - 15.4x + 1.41; I am trying to solve for the local maxima (preferably absolute maxima) for this equation. I need both x and y values for the maxima. Please let me know the best way to do this for a series of 10 polynomials
Thanks,
0 个评论
回答(1 个)
Walter Roberson
2017-2-27
The typical calculus method is to differentiate and solve for the differentiated function equal to 0. That gives you all of the minima, maxima, and saddle points. You then differentiate the function again and evaluate at the roots you found a moment before, and the places the value is negative correspond to maxima. Select for those, take the corresponding x values back to the original equation, evaluate, pick out the largest to get the global maxima.
Hint: since you have numeric coefficients, you can do a numeric differentiation and use roots(). You will need to think a brief moment about how the coefficients that have to be passed to roots() relate to your original coefficients.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!