First time here? Check out the FAQ!
answered 2012-01-21 13:12:53 +0100
Hi, you can use the assume command
x,y,u,v,p,k=var('x,y,u,v,p,k') assume(k+1!=0) integrate(x+y^k, y)
which calculates to
x*y + y^(k + 1)/(k + 1)