Getting conditions for a dense algebraic second degree equation
Mostra commenti meno recenti
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 Commenti
Torsten
il 18 Mar 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
il 18 Mar 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
il 18 Mar 2022
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Mathematics in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!