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 | |
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?