Getting conditions for a dense algebraic second degree equation
이전 댓글 표시
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
Torsten
2022년 3월 18일
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
2022년 3월 18일
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
2022년 3월 18일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!