Hi community.
I'm interested in manipulating a formal expression
∫dte−2∫dth(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?