Closed
Description
At the moment, Sage uses Maxima to compute the Bessel Y function. This is slow and works only with the default 53 bits of precision. It would be fairly easy to implement this:
- for integer values of the order nu, use the mpfr yn function
- for non-integer values of nu, use the formula $Y_nu(z) = (J_nu(z)cos(nupi) - J_{-nu}(z))/sin(nu*pi)$, where J is the Bessel J function.
Component: calculus
Reviewer: Karl-Dieter Crisman, Benjamin Jones
Issue created by migration from https://trac.sagemath.org/ticket/4230