Ask Your Question

tom12519's profile - activity

2014-12-30 00:16:09 +0200 received badge  Famous Question (source)
2014-11-10 17:17:31 +0200 received badge  Notable Question (source)
2013-10-03 12:53:51 +0200 received badge  Popular Question (source)
2012-03-29 19:21:20 +0200 received badge  Good Question (source)
2012-03-29 09:55:08 +0200 received badge  Nice Question (source)
2012-03-28 22:08:00 +0200 received badge  Student (source)
2012-03-28 17:53:38 +0200 received badge  Editor (source)
2012-03-28 17:52:02 +0200 asked a question Plotting an integral with a variable as a limit

I want to plot a function with a variable as a limit, e.g. look at \int_0^x f(y) d y, but this seems to throw an error when Sage can't analytically integrate the function.

x,y=var('x y')
f(y)=integrate(x^x,x,1,y)
plot(f,2,10)

Returns

Traceback (click to the left of this block for traceback)
...
ValueError: free variable: x

Can anybody help with this, please? Many thanks.