1 | initial version |
The culprit is %iint
that let the rest of the formula appear as a comment.
Here is a smaller example:
sage: f = polylog(3, x)
sage: f.integral(x)
-x*dilog(x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
sage: f.integral(x, algorithm='fricas')
-x*%iint(x, -log(-x + 1)/x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
2 | No.2 Revision |
The culprit is %iint
that let the rest of the formula appear as a comment.
Here is a smaller example:
sage: f = polylog(3, x)
sage: f.integral(x)
-x*dilog(x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
sage: f.integral(x, algorithm='fricas')
-x*%iint(x, -log(-x + 1)/x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
Thanks for reporting, this is now trac ticket 28630
3 | No.3 Revision |
The culprit is %iint
that let the rest of the formula appear as a comment.
Here is a smaller example:
sage: f = polylog(3, x)
sage: f.integral(x)
-x*dilog(x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
sage: f.integral(x, algorithm='fricas')
-x*%iint(x, -log(-x + 1)/x) - (x - 1)*log(-x + 1) + x*polylog(3, x) + x
Thanks for reporting, this is now trac ticket 28630.