Integrating an integral
Hi community.
I'm interested in manipulating a formal expression
$$\int \mathrm{d}t \; e^{- 2 \int \mathrm{d}t \; h(t)}.$$
My notebook contains the following code
var('t')
h = function('h')(t)
integrate(exp(integrate(-2*h,t)),t)
but the result is +Infinity
.
QUESTION(S):
- Why I am getting a result if the function
h
is not explicit? - Where does the
+Infinity
come from?
The culprit is giac:
Interestingly :
Enhanceable ?
Indeed, Giac misbehaves.
And :
Maxima is correct.
Would you mind filing a ticket ?