\(\int \sqrt {a+b \sin ^2(e+f x)} \, dx\) [427]

Optimal result
Mathematica [A] (verified)
Rubi [A] (verified)
Maple [A] (verified)
Fricas [F]
Sympy [F]
Maxima [F]
Giac [F]
Mupad [F(-1)]
Reduce [F]

Optimal result

Integrand size = 16, antiderivative size = 52 \[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\frac {E\left (e+f x\left |-\frac {b}{a}\right .\right ) \sqrt {a+b \sin ^2(e+f x)}}{f \sqrt {\frac {a+b \sin ^2(e+f x)}{a}}} \] Output:

EllipticE(sin(f*x+e),(-b/a)^(1/2))*(a+b*sin(f*x+e)^2)^(1/2)/f/((a+b*sin(f* 
x+e)^2)/a)^(1/2)
 

Mathematica [A] (verified)

Time = 0.07 (sec) , antiderivative size = 61, normalized size of antiderivative = 1.17 \[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\frac {a \sqrt {\frac {2 a+b-b \cos (2 (e+f x))}{a}} E\left (e+f x\left |-\frac {b}{a}\right .\right )}{f \sqrt {2 a+b-b \cos (2 (e+f x))}} \] Input:

Integrate[Sqrt[a + b*Sin[e + f*x]^2],x]
 

Output:

(a*Sqrt[(2*a + b - b*Cos[2*(e + f*x)])/a]*EllipticE[e + f*x, -(b/a)])/(f*S 
qrt[2*a + b - b*Cos[2*(e + f*x)]])
 

Rubi [A] (verified)

Time = 0.28 (sec) , antiderivative size = 51, normalized size of antiderivative = 0.98, number of steps used = 4, number of rules used = 4, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.250, Rules used = {3042, 3657, 3042, 3656}

Below are the steps used by Rubi to obtain the solution. The rule number used for the transformation is given above next to the arrow. The rules definitions used are listed below.

\(\displaystyle \int \sqrt {a+b \sin ^2(e+f x)} \, dx\)

\(\Big \downarrow \) 3042

\(\displaystyle \int \sqrt {a+b \sin (e+f x)^2}dx\)

\(\Big \downarrow \) 3657

\(\displaystyle \frac {\sqrt {a+b \sin ^2(e+f x)} \int \sqrt {\frac {b \sin ^2(e+f x)}{a}+1}dx}{\sqrt {\frac {b \sin ^2(e+f x)}{a}+1}}\)

\(\Big \downarrow \) 3042

\(\displaystyle \frac {\sqrt {a+b \sin ^2(e+f x)} \int \sqrt {\frac {b \sin (e+f x)^2}{a}+1}dx}{\sqrt {\frac {b \sin ^2(e+f x)}{a}+1}}\)

\(\Big \downarrow \) 3656

\(\displaystyle \frac {\sqrt {a+b \sin ^2(e+f x)} E\left (e+f x\left |-\frac {b}{a}\right .\right )}{f \sqrt {\frac {b \sin ^2(e+f x)}{a}+1}}\)

Input:

Int[Sqrt[a + b*Sin[e + f*x]^2],x]
 

Output:

(EllipticE[e + f*x, -(b/a)]*Sqrt[a + b*Sin[e + f*x]^2])/(f*Sqrt[1 + (b*Sin 
[e + f*x]^2)/a])
 

Defintions of rubi rules used

rule 3042
Int[u_, x_Symbol] :> Int[DeactivateTrig[u, x], x] /; FunctionOfTrigOfLinear 
Q[u, x]
 

rule 3656
Int[Sqrt[(a_) + (b_.)*sin[(e_.) + (f_.)*(x_)]^2], x_Symbol] :> Simp[(Sqrt[a 
]/f)*EllipticE[e + f*x, -b/a], x] /; FreeQ[{a, b, e, f}, x] && GtQ[a, 0]
 

rule 3657
Int[Sqrt[(a_) + (b_.)*sin[(e_.) + (f_.)*(x_)]^2], x_Symbol] :> Simp[Sqrt[a 
+ b*Sin[e + f*x]^2]/Sqrt[1 + b*(Sin[e + f*x]^2/a)]   Int[Sqrt[1 + (b*Sin[e 
+ f*x]^2)/a], x], x] /; FreeQ[{a, b, e, f}, x] &&  !GtQ[a, 0]
 
Maple [A] (verified)

Time = 1.52 (sec) , antiderivative size = 71, normalized size of antiderivative = 1.37

method result size
default \(\frac {a \sqrt {\frac {\cos \left (2 f x +2 e \right )}{2}+\frac {1}{2}}\, \sqrt {\frac {a +b \sin \left (f x +e \right )^{2}}{a}}\, \operatorname {EllipticE}\left (\sin \left (f x +e \right ), \sqrt {-\frac {b}{a}}\right )}{\cos \left (f x +e \right ) \sqrt {a +b \sin \left (f x +e \right )^{2}}\, f}\) \(71\)

Input:

int((a+b*sin(f*x+e)^2)^(1/2),x,method=_RETURNVERBOSE)
 

Output:

a*(cos(f*x+e)^2)^(1/2)*((a+b*sin(f*x+e)^2)/a)^(1/2)*EllipticE(sin(f*x+e),( 
-b/a)^(1/2))/cos(f*x+e)/(a+b*sin(f*x+e)^2)^(1/2)/f
 

Fricas [F]

\[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\int { \sqrt {b \sin \left (f x + e\right )^{2} + a} \,d x } \] Input:

integrate((a+b*sin(f*x+e)^2)^(1/2),x, algorithm="fricas")
 

Output:

integral(sqrt(-b*cos(f*x + e)^2 + a + b), x)
 

Sympy [F]

\[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\int \sqrt {a + b \sin ^{2}{\left (e + f x \right )}}\, dx \] Input:

integrate((a+b*sin(f*x+e)**2)**(1/2),x)
 

Output:

Integral(sqrt(a + b*sin(e + f*x)**2), x)
 

Maxima [F]

\[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\int { \sqrt {b \sin \left (f x + e\right )^{2} + a} \,d x } \] Input:

integrate((a+b*sin(f*x+e)^2)^(1/2),x, algorithm="maxima")
 

Output:

integrate(sqrt(b*sin(f*x + e)^2 + a), x)
 

Giac [F]

\[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\int { \sqrt {b \sin \left (f x + e\right )^{2} + a} \,d x } \] Input:

integrate((a+b*sin(f*x+e)^2)^(1/2),x, algorithm="giac")
 

Output:

integrate(sqrt(b*sin(f*x + e)^2 + a), x)
 

Mupad [F(-1)]

Timed out. \[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\left \{\begin {array}{cl} \frac {\sqrt {a}\,\mathrm {E}\left (e+f\,x\middle |-\frac {b}{a}\right )}{f} & \text {\ if\ \ }0<a\\ \int \sqrt {b\,{\sin \left (e+f\,x\right )}^2+a} \,d x & \text {\ if\ \ }\neg 0<a \end {array}\right . \] Input:

int((a + b*sin(e + f*x)^2)^(1/2),x)
 

Output:

piecewise(0 < a, (a^(1/2)*ellipticE(e + f*x, -b/a))/f, ~0 < a, int((a + b* 
sin(e + f*x)^2)^(1/2), x))
 

Reduce [F]

\[ \int \sqrt {a+b \sin ^2(e+f x)} \, dx=\int \sqrt {\sin \left (f x +e \right )^{2} b +a}d x \] Input:

int((a+b*sin(f*x+e)^2)^(1/2),x)
 

Output:

int(sqrt(sin(e + f*x)**2*b + a),x)