On Tue, Nov 7, 2017 at 9:06 AM, saad khalid <[email protected]> wrote: > Hello everyone: > > I am currently trying to do this integral in Cocalc: > > integral(525.87*(x)^(-2.35),x,.1,1) > > It gives me the following error: > "CEXPT only defined for non-negative integral exponents." > > What seems to be the issue here?
Maxima integration, which we still use by default, is very buggy. Use sympy instead -- this works: integral(525.87*(x)^(-2.35),x,.1,1, algorithm='sympy') See https://cocalc.com/projects/4a5f0542-5873-4eed-a85c-a18c706e8bcd/files/support/2017-11-07-091923-integral.ipynb > > -- > You received this message because you are subscribed to the Google Groups > "sage-support" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/sage-support. > For more options, visit https://groups.google.com/d/optout. -- William (http://wstein.org) -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
