Why does symbolic integration return the wrong answer for this integral?

2 vues (au cours des 30 derniers jours)
Hello! I'm trying to integrate 1/(1-x)^2 with the bounds 0 to x.
Now, other sources (Like WolframAlpha) return the result as -x/(x-1). However, MATLAB returns inf.
Can anyone explain why this would be?
syms x
expr = 1/(1-x)^2
int(expr, 0, x)
ans =
Inf

Réponse acceptée

Walter Roberson
Walter Roberson le 23 Fév 2021
syms x a
expr = 1/(1-x)^2
expr = 
F = int(expr, x, 0, a)
F = 
subs(F,a,x)
ans = 
  2 commentaires
Gareth Fuller
Gareth Fuller le 23 Fév 2021
That works- All I've got to do to get the desired result is some shuffling around of terms.
I'm curious as to why the Subs step is needed, and why it can't get the piecewise function with int(expr,0,x).
Thanks for providing a solution- that certainly helped me out.
Have a wonderful day!
Walter Roberson
Walter Roberson le 23 Fév 2021
I am not sure. My expectation was that I would be able to control the output by adding in an assume() or tossing in an 'IgnoreAnalyticConstraints' option, but those did not work.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox 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!

Translated by