Getting conditions for a dense algebraic second degree equation
Ältere Kommentare anzeigen
I have a dense algebraic second degree equation, with five parameters in each coefficiente.
I'd like to get conditions about positivity of the solutions.
Do you know if this is factible in MATLAB?
Thank you in advance.
4 Kommentare
Torsten
am 18 Mär. 2022
So you have a quadratic polynomial
f(x) = a*x^2+b*x+c
where a, b and c depend on 5 parameters a = a(p1a,p2a,p3a,p4a,p5a), b= b(p1b,p2b,p3b,p4b,p5b) and c=c(p1c,p2c,p3c,p4c,p5) and you want to know when
x(1) = -b/(2a) + 1/(2*a)*sqrt(b^2- 4ac) and
x(2) = -b/(2a) - 1/(2*a)*sqrt(b^2- 4ac)
are both positive ?
Torsten
am 18 Mär. 2022
If b^2-4*a*c is positive, a sufficient condition is
b/(2*a) < 1/(2*a)*sqrt(b^2- 4ac) < -b/2a
Noemi ZM
am 18 Mär. 2022
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!