-
-
Notifications
You must be signed in to change notification settings - Fork 677
Closed
Milestone
Description
The SymPy-Sage interface raises an error because there are no Fresnel integral functions in Sage:
sage: integrate(sin(x^2), x, algorithm='sympy')
...
AttributeError:
see:
sage: import sympy
sage: x = sympy.Symbol('x')
sage: sympy.integrate(sympy.sin(x^2), x)
3*sqrt(2)*sqrt(pi)*fresnels(sqrt(2)*x/sqrt(pi))*gamma(3/4)/(8*gamma(7/4))
They are holonomic so they should be in Sage.
Depends on #24425
CC: @mforets
Component: symbolics
Author: Marcelo Forets
Branch/Commit: f49ce18
Reviewer: Ralf Stephan
Issue created by migration from https://trac.sagemath.org/ticket/24212