All published worksheets from http://sagenb.org
# Here is the change of variables and the Jacobian u,v = var('u,v') Phi = Matrix([[(u/v)^(1/3)],[(v*u^2)^(1/3)]]) jacobian(Phi,[u,v])
# Here is the determinant J = jacobian(Phi,[u,v]) det(J).simplify()
# Here is the integral integral(integral(det(J),u,1,2),v,1,2)