How can get roots of polynomial having variables in denominator.?

2 visualizaciones (últimos 30 días)
Let
F(x)= (x^2+1)/(x+1)+(2*x^2+3)/(x+2)=0,
With syms x,
How can we find the roots of F(x).?

Respuesta aceptada

KSSV
KSSV el 12 de Feb. de 2021
Read about vpasolve.
syms x
F = (x^2+1)/(x+1)+(2*x^2+3)/(x+2)==0 ;
r = vpasolve(F)

Más respuestas (0)

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by