First time here? Check out the FAQ!
answered 2012-11-28 15:11:05 +0100
Using numerical_integral will allow you to produce a plot as follows.
numerical_integral
def T(L): ans=numerical_integral(4/sqrt(pi)*exp(-L)*(x^2)*exp(-x^2/4)/cosh(sqrt(L)*x),0,oo) return ans[0] plot(lambda L: T(L),(L,5,7))