find the minimum of polynomial.

조회 수: 13 (최근 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?


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 CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by