|
From: Stavros M. <mac...@us...> - 2026-06-06 21:13:17
|
``limit`` (and in fact Maxima in general) has minimal understanding of intervals and interval arithmetic. For example, ``sign(x^2+sin(x)+2) => pnz``. It would be great to fix that, but it's not really a "bug", but "known limitation". In the ``gamma`` example, ``und`` is "correct" in the best-effort sense, because it includes the ``zero`` case. --- **[bugs:#4758] limits of the form gamma\(ind\)** **Status:** open **Group:** None **Labels:** limit gamma **Created:** Sat Jun 06, 2026 06:55 PM UTC by Barton Willis **Last Updated:** Sat Jun 06, 2026 06:55 PM UTC **Owner:** nobody Should be `ind`, not `und`: ~~~ (%i1) limit(gamma(4+sin(x)),x,inf); (%o1) und ~~~ Related bug: should be 0, not `und` ~~~ (%i2) limit(gamma(4+sin(x))/x,x,inf); (%o2) und ~~~ --- Sent from sourceforge.net because max...@li... is subscribed to https://sourceforge.net/p/maxima/bugs/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/maxima/admin/bugs/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |