What is $$\int \frac{4t}{1-t^4}dt$$ is there some kind of substitution which might help .Note that here $t=\tan(\theta)$
-
9Why not decompose the fraction instead? You would then get that, $$\dfrac{4t}{1-t^4}=\dfrac{2t}{t^2+1}-\dfrac{1}{t-1}-\dfrac{1}{t+1}.$$ – Workaholic Mar 09 '16 at 16:02
-
@Workaholic Because it's not the easiest way. – Enrico M. Mar 09 '16 at 16:05
-
5Can someone tell me what $t= \tan \theta$ means? – S.C.B. Mar 09 '16 at 16:07
-
1Uh oh, I get the feeling that the integral he wants to do is $\int \frac{4\tan\theta}{1-\tan^4\theta}dt$. So all our answers are to the wrong question! – Mark Fischler Mar 09 '16 at 16:24
-
1@MarkFischler Oh.. I think the OP would need to clarify that. – S.C.B. Mar 09 '16 at 16:25
-
1@MarkFischler: $d \theta$ or $d \tan \theta$? Those are two very different integrals, and if you're right, it's certainly not $dt$. – Kevin Mar 10 '16 at 05:21
8 Answers
Well aside the $4$ constant, you have
$$\int\frac{t}{1 - t^4}\ \text{d}t$$
Use
$y = t^2$ so $\text{d}y = 2t\ \text{d}t$
so
$$2\int \frac{1}{1 - y^2}\ \text{d}y = 2\ \text{arctanh}(y) ~~~ \to ~~~ 2\ \text{arctanh}(t^2)$$
- 26,114
-
1Don't forget that you can also write the hyperbolic arc tangent in terms of logarithms! – Enrico M. Mar 09 '16 at 16:07
Observe that $$1-t^4=1-(t^2)^2$$
Let $$u=t^2$$ with $$du = 2t\,dt$$
The integral becomes
$$I=\int \frac{2}{1-u^2}du$$
Which is equal to
$$I = \ln{\frac{|u+1|}{|u-1|}}+C=\ln{\frac{|t^2+1|}{|t^2-1|}}+C$$
The above answer has a formula, but can be most conveniently reached using partial fractions method.
- 934
Doesn't this work?
$$\int \frac{4t}{1-t^4}dt=\int \frac{2t}{1+t^2}-\frac{-2t}{1-t^2} dt=\ln |\frac{1+t^2}{1-t^2}|+C$$
Also $t=\tan \theta$ substitution works quite well. $$\int \frac{4\tan \theta}{1-\tan^4 \theta}\sec^2 \theta d \theta=\int \frac {4 \tan \theta }{1-\tan^2 \theta} d\theta=2\int \frac{1+\tan \theta}{1-\tan \theta}-\frac{1-\tan \theta}{1+\tan \theta} d\theta$$
$$2\int \frac{1+\tan \theta}{1-\tan \theta}-\frac{1-\tan \theta}{1+\tan \theta} d\theta=2\int\frac{cos \theta+\sin \theta}{\cos \theta-\sin \theta}+\frac{\cos \theta-\sin \theta}{cos \theta+\sin \theta}d\theta$$
Note that $(\sin \theta+\cos \theta)'=\cos \theta-\sin \theta$, $(\cos \theta-\sin \theta)'=-\sin \theta-\cos \theta$.
I think you can continue from here.
- 22,768
HINT: we get $$\frac{4t}{1-t^4}=- \left( t-1 \right) ^{-1}- \left( t+1 \right) ^{-1}+2\,{\frac {t}{{t} ^{2}+1}} $$
- 95,283
$$I=\int \frac{4t}{1-t^4}dt$$ Let $t=\sqrt{\sin\theta}$. Then, $dt=\frac{1}{2\sqrt{\sin\theta}}\cos\theta d\theta$. Then, $$I=\int \frac{4\sqrt{\sin\theta}\cos\theta d\theta}{2\sqrt{\sin\theta}\cos^2\theta}=2\int\sec\theta d\theta=2\ln|\sec\theta+\tan\theta|+c=2\ln\left|\frac1{\cos\theta}+\frac{\sin\theta}{\cos\theta}\right|+c=2\ln\left|\frac{t^2+1}{\sqrt{1-t^4}}\right|+c=\ln\left|\frac{(t^2+1)^2}{(1+t^2)(1-t^2)}\right|+c=\ln\left|\frac{t^2+1}{1-t^2}\right|+c$$
- 11,185
- 3
- 22
- 42
The useful technique to find a good substitution is to let $t = f(u;a)$ where the function $f$ is of some simple form but contains a parameter $a$. In this case, the natural thing to try is to let $$ t = u^a. $$ Then $$ \int \frac{4t}{1-t^4}dt = \int \frac{4u^a}{1-u^{4a}} au^{a-1} du = \int\frac{4au^{2a-1}}{1-u^{4a}}du $$ Now you choose $a$ to make the integral simpler. Here, the two choices that come to mind are $a=\frac{1}{4}$ to simplify the denominator, or $a=\frac{1}{2}$ to simplify the numerator. The former leads to $\int \frac{\sqrt{u}}{-1u}$ which is not trivial. So go with $a=\frac{1}{2}$ to get $$ \int \frac{2}{1-u^2} du = \log(u+1) - \log(u-1) = \log(t^2+1) - \log(t^2-1)$$
EDITED
- 934
- 41,743