Find the roots of a complicated expression
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tim Berry
le 27 Déc 2021
Modifié(e) : Torsten
le 27 Déc 2021
Is it possible find the roots of a complicated expression like this:
-190 + 100/(1+0.01+x) + 80/(1+0.02+x)^2 + 20/(1+0.03+x)^3
Is there a way to rearrange this into a polynomial first, and then seek its roots?
(It would be easy if the denominators in the expression were simply (1+x), but in this complicated expression each denominator is different.)
0 commentaires
Réponse acceptée
Walter Roberson
le 27 Déc 2021
format long g
syms x
y = -190 + 100/(1+0.01+x) + 80/(1+0.02+x)^2 + 20/(1+0.03+x)^3
xsol = solve(y)
double(xsol)
1 commentaire
Voir également
Catégories
En savoir plus sur Polynomials dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!