I have to find the integral of xsqrt(x + 1) dx. By hand, I found (2/3)x(x + 1)^(3/2) – (4/15)(x + 1)^(5/2) + c By sage math I found : -(2/3)(x + 1)^(3/2) + (2/15)(x + 1)^(5/2) the sage math’s code is simple: x=var('x'); f = x*sqrt(x + 1); fi = integral(f, x); print (latex(fi)); which is the error?