octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #60705] [octave forge] (symbolic) int (x * sqr


From: Mike Miller
Subject: [Octave-bug-tracker] [bug #60705] [octave forge] (symbolic) int (x * sqrt (abs (x)) on [-1, 1] gives wrong result
Date: Sun, 30 May 2021 16:46:05 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36

Update of bug #60705 (project octave):

                Category:         Octave Function => Octave Forge Package   
                  Status:                    None => Confirmed              
                 Release:                   6.2.0 => dev                    
        Operating System:       Microsoft Windows => Any                    
                 Summary: sym int x*sqrt(abs(x)) on [-1,1] gives 4/5, instead
of 0. => [octave forge] (symbolic) int (x * sqrt (abs (x)) on [-1, 1] gives
wrong result

    _______________________________________________________

Follow-up Comment #1:

Confirmed on Debian. This is actually a bug in upstream SymPy, so it needs to
be fixed there for this to be fixed in Octave symbolic.

Here is the equivalent Python that produces the same wrong result:


from sympy import integrate, sqrt
from sympy.abc import x
f = x * sqrt(abs(x))
y = integrate(f, (x, -1, 1))


I believe this case is covered by this upstream bug report:
https://github.com/sympy/sympy/issues/20982

The workaround suggested there works in this case as well (but of course this
workaround is not exposed using the symbolic package):


y = integrate(f, (x, -1, 1), manual=True)


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?60705>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]