4th degree equations
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, can anyone help me with this problem? We need the smallest positive real root of this equation
a*x^4+b*x^3+c*x^2+d*x+e=0,
where a>0, b<0, c>0, d<0 and e>0. As Descartes said, in that case this equation has at least 2 positive real roots.
Thank you for your attention.
0 件のコメント
採用された回答
Walter Roberson
2011 年 11 月 18 日
r = roots([a,b,c,d,e]);
r(imag(r)~=0) = []; %remove complex
r(r <= 0) = []; %remove non-positive
min(r) %now it is the smallest positive real root
5 件のコメント
Walter Roberson
2011 年 11 月 19 日
I think I do not know enough polynomial theory to come up with a useful answer on this, sorry.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!