find the minimum of polynomial.

12 ビュー (過去 30 日間)
MADHVI
MADHVI 2025 年 2 月 24 日
回答済み: Walter Roberson 2025 年 2 月 24 日
To find the minimum of polynomial a*R^2+b*R+c=0.
I want to minimize the f(R,a)=0.
Give the command for minimizing f(R,a)=0.
Thanks in advance.

回答 (2 件)

Sam Chak
Sam Chak 2025 年 2 月 24 日

For a two-degree polynomial (quadratic) in the form of "y = ax^2 + bx + c", the formula to find the minimum value is: min = c - (b^2 / 4a).

Do you want to test special tools or functions for this specific problem?

  1 件のコメント
Torsten
Torsten 2025 年 2 月 24 日
... assuming a > 0.

サインインしてコメントする。


Walter Roberson
Walter Roberson 2025 年 2 月 24 日
syms a b c R
f = a*R^2+b*R+c
f = 
critical_points = solve(diff(f, R), R)
critical_points = 
value_at_critical_points = subs(f, R, critical_points)
value_at_critical_points = 

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by