solving an equation with a condition
Mostrar comentarios más antiguos
Is there any way to find a value to z that makes the solution of this equation consisting of only negative real numbers or negative real numbers with imaginary numbers?
x^4+z*x^2+z*x+50=0
Respuesta aceptada
Más respuestas (1)
David Hill
el 7 de Dic. de 2020
I ran this I could not find any cases where all real root parts are negative.
z=-1e6;
while sum(sign(real(roots([1 0 z z 50]))))~=-4
z=z+1;
end
1 comentario
Walter Roberson
el 7 de Dic. de 2020
I do not think that is the question. I think the question is to find (x,z) such that real(x)<0 and real(z) < 0 and f(x,z) == 0
Categorías
Más información sobre Symbolic Computations in MATLAB 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!









