Getting conditions for a dense algebraic second degree equation
Mostrar comentarios más antiguos
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 comentarios
Torsten
el 18 de Mzo. de 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
el 18 de Mzo. de 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
el 18 de Mzo. de 2022
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Linear Algebra en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!