Comment #1 on issue 230 by
fredrik....@gmail.com: Laguerre problem
http://code.google.com/p/mpmath/issues/detail?id=230
I get:
ValueError: hypsum() failed to converge to the requested 73 bits of
accuracy
using a working precision of 3588 bits. Try with a higher maxprec,
maxterms, or set zeroprec.
This is expected, because the zero is nontrivial and cannot be detected by
the numerical algorithm. As the output suggests, you can force it to return
0 by passing zeroprec:
>>> mp.laguerre(1, 99, 100, zeroprec=1000)
mpf('0.0')