However to select between antiderivatives which are both valid, Rubi assumes the integrand' s variables are positive. For example, Int[1/Sqrt[a + b x + c x^2], x]
returns
ArcTanh[(b+2*c*x)/(2*Sqrt[c]*Sqrt[a+b*x+c*x^2])]/Sqrt[c]
whereas Int[1/Sqrt[a + b x - c x^2], x]
returns
-ArcTan[(b-2*c*x)/(2*Sqrt[c]*Sqrt[a+b*x-c*x^2])]/Sqrt[c]
Note that both results are mathematically valid no matter what nonzero value is substituted for c and both results are free of the imaginary unit if a positive value is substituted for c.
{Sqrt[2*x + 1], x, 1, (1/3)*(1 + 2*x)^(3/2)}
{Sin[x]^3, x, 2, -Cos[x] + Cos[x]^3/3}
Sqrt[2*x + 1]
is the expression to integratex
contains the only variables with respect to integration1
contains the "highest level function" the optimal antiderivative may contain (as expressed in the Integration Test Results section)(1/3)*(1 + 2*x)^(3/2)
is the answer4.17
or akin so that others know it is not the same version as those in the github repos (as is common in semantic versioning practice.)
4.17.0
) will hopefully be the last. To avoid confusion, I'm starting to think the out-of-date RuleBasedIntegration repositories should all be deleted, or at least hidden...