-
-
Notifications
You must be signed in to change notification settings - Fork 660
Closed
Description
With a symbolic calculation, Sage returns 0
for the integral integrate(exp(-x)*sinh(sqrt(x)), x, 0, oo)
instead of
exp(1/4) * sqrt(pi) / 2
sage: integrate(exp(-x)*sinh(sqrt(x)), x, 0, oo)
0
sage: integral_numerical(exp(-x)*sinh(sqrt(x)), 0, oo)
(1.1379378972322944, 3.1822014179283542e-07)
sage: (exp(1/4) * sqrt(pi) / 2).n()
1.13793789723437
sage: plot(exp(-t)*sinh(sqrt(t)), t, 0, 10)
Depends on #11445
Upstream: Fixed upstream, in a later stable release.
Component: calculus
Keywords: integrate
Author: Michael Orlitzky
Reviewer: Karl-Dieter Crisman
Merged: sage-5.0.beta12
Issue created by migration from https://trac.sagemath.org/ticket/11238