Ask Your Question

Revision history [back]

In order to use SymPy's fresnelc and fresnels functions in Sage, one should import them.

This is done as follows.

sage: from sympy import fresnelc, fresnels

Then one can do for instance

sage: fresnels(x)
fresnels(x)
sage: integrate(fresnels(x), (x, 0, 1))
-1/pi + fresnel_sin(1)

The above is run using Sage 8.3.rc3.

sage: version()
'SageMath version 8.3.rc3, Release Date: 2018-07-28'