Hello, I want to get indefiniteIntegral of sqrt(x+sqrt(x)), But in Sage, I get nothing but integrate(sqrt(x + sqrt(x)), x).
sage: x = var('x')
sage: h = sqrt(x+sqrt(x))
sage: h.integral(x)
Is there a way to integrate this function?
1 | initial version | asked 2020-04-21 06:36:25 +0100 Anonymous |
Hello, I want to get indefiniteIntegral of sqrt(x+sqrt(x)), But in Sage, I get nothing but integrate(sqrt(x + sqrt(x)), x).
sage: x = var('x')
sage: h = sqrt(x+sqrt(x))
sage: h.integral(x)
Is there a way to integrate this function?