Décomposer, sur
, en éléments simples :
.
Calculer

dt et

dx
Réponse :
On tape :
partfrac(t^2/(1-t^4))
On obtient :
-1/2/(t^2+1)+1/(4*(t+1))-1/4/(t-1)
On tape :
int(-1/2/(t^2+1)+1/(4*(t+1))-1/4/(t-1),t)
ou on tape :
int(t^2/(1-t^4),t)
On obtient :
1/(-2*atan(t))+1/(4*ln(abs(t+1)))+1/(-4*ln(abs(t-1)))
On tape :
normal(int(sin(x)^2/cos(2*x),x))
On obtient :
-1/2*x-1/-4*ln(abs((tan(1/2*x))^2-2*tan(1/2*x)-1))-
1/4*ln(abs((tan(1/2*x))^2+2*tan(1/2*x)-1))
Ou on tape en linéarisant avant d'intégrer :
normal(int(tlin(sin(x)^2/cos(2*x))))
On obtient :
1/4*ln(abs(tan(x)+1))+1/-4*ln(abs(tan(x)-1))+1/-2*x
Ou encore on veut faire le changement de variable tan(x) = t
et on tape pour avoir l'expression en fonction de la tangente,
avant d'intégrer :
trigtan(texpand(sin(x)^2/cos(2x)))
On obtient :
(-((tan(x))^2))/((tan(x))^2-1)
On fait le changement de variable x =atan(t) on tape :
subst('integrate(-tan(x)^2/(tan(x)^2-1),x)',x=atan(t))
ou on tape
subst(Int(-tan(x)^2/(tan(x)^2-1),x),x=atan(t))
On obtient
integrate((-(t^2))/((1+t^2)*(t^2-1)),t)
Soit, le remplacant t par tan(x) :
1/-2*atan(tan(x))+1/4*ln(abs(tan(x)+1))+1/-4*ln(abs(tan(x)-1))