-
-
Notifications
You must be signed in to change notification settings - Fork 674
Closed
Milestone
Description
As reported on this ask question, we have:
sage: f = polylog(3, x)
sage: f.integral(x, algorithm='fricas')
-x*%iint(x, -log(-x + 1)/x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
So, fricas
produces something that is ill-interpreted as some %iint
symbolic function.
Note that maxima
produces the following answer:
sage: f.integral(x, algorithm='maxima')
-x*dilog(x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
Depends on #32049
CC: @hemmecke @sagetrac-whuss @rwst @fchapoton @mantepse
Component: symbolics
Keywords: FriCAS
Author: Martin Rubey
Branch/Commit: 4f3e1b4
Reviewer: Dima Pasechnik
Issue created by migration from https://trac.sagemath.org/ticket/28630