Menu

#1821 limit(sqrt(x),x,minf) not fully evaluated

closed
nobody
5
2009-11-22
2009-11-21
No

Maxima returns a noun form, which can be evaluated in a second step:

(%i2) limit(sqrt(x),x,minf);
(%o2) %i*('limit(sqrt(x),x,inf))
(%i3) %,nouns;
(%o3) %i*inf

The limit of sqrt(minf) returns a noun form with a gensymbol:

(%i4) limit(sqrt(minf));
(%o4) %i*('limit(sqrt(?g23883),?g23883,inf))
(%i5) %,nouns;
(%o5) %i*inf

I think the answer infinity is more correct. The answer %i*inf might be correct too. But Maxima can not handle directed infinities.

Dieter Kaiser

Discussion

  • Dan Gildea

    Dan Gildea - 2009-11-22

    Fixed in limit.lisp rev 1.86.

    (%i6) limit(sqrt(x),x,minf);
    (%o6) infinity
    (%i7) limit(sqrt(minf));
    (%o7) infinity

     
  • Dan Gildea

    Dan Gildea - 2009-11-22
    • status: open --> closed
    • labels: --> Lisp Core - Limit
     

Log in to post a comment.