In the following I show two functions f
and g
where ShowSolution(Limit(..))
works for f
but not for g
. Any idea why?
with(Student[Calculus1]);
f := x^2 + x:
limit(f, x = -infinity);
infinity
ShowSolution(Limit(f, x = -infinity), maxsteps = 100);
// step-by-step solution is produced
g := x^2 + 3*x:
limit(g, x = -infinity);
infinity
ShowSolution(Limit(g, x = -infinity), maxsteps = 100);
Error, (in Student:-Calculus1:-ShowSolution) unable to compute solution steps
Maple is able to change f
into an equivalent expression by factoring out x^2
, but does not seem to be able to do it with g
.