4

Our goal is to find $$\int \frac{dx}{\sin^2 x \cos^2x-6\sin x\cos x}$$

Here is my approach:

We divide both numerator and denominator by $\cos^2x$ and the letting $\tan x=u$,our integrand becomes $-\int \frac{u^2+1}{u(6u^2-u+6)} du$. It is do-able but it seems to need partial fractions,but that would be really tiresome and tedious. Is there any clever way by using further substitution to finish from here? Or do we need to change our approach entirely for a nicer solution?

Blue
  • 75,673
madness
  • 566

4 Answers4

2

You can expand the integrand into partial fractions without the intermediate substitution,

$$\begin{align*} \int\frac{dx}{\sin^2(x)\cos^2(x)-6\sin(x)\cos(x)} &= \int\frac{dx}{\frac14\sin^2(2x) - 3\sin(2x)} \\[1ex] &= 4 \int \frac{dx}{\sin(2x) (\sin(2x) - 12)} \\[1ex] &= \frac13 \int \left(\frac1{\sin(2x) - 12}- \frac1{\sin(2x)}\right) \, dx \end{align*}$$

then try the substitution on the first term.

user170231
  • 19,334
2

Substitute $\text{sech}\ 2y= \sin 2x$, or $y=\frac12\ln\cot y$

\begin{align} &\int \frac{1}{\sin^2 x \cos^2x-6\sin x\cos x}dx\\ =&\int \frac{4}{12-\text{sech}\ 2y }dy =\frac y3 +\frac13\int \frac{d(\tanh y)}{13\tanh^2 y +11}\\ = &\ \frac y3 +\frac1{3\sqrt{143}}\tan^{-1}\bigg( \sqrt{\frac{13}{11}}\tanh y\bigg) \end{align}

Quanto
  • 97,352
1

hint

Your integral can be written as

$$2\int \frac{2dx}{\sin^2(2x)-12\sin(2x)}=$$

$$2\int \frac{dt}{\sin(t)(\sin(t)-12)}=$$

$$\frac 16\int (\frac{1}{\sin(t)-12}-\frac{1}{\sin(t)})dt=$$

$$\frac 16\int \frac{dt}{\sin(t)-12}-\frac 16\int \frac{\sin(t)dt}{1-\cos^2(t)}$$

Now try the substitition $ u=\tan(\frac t2)$ for the first and $ v=\cos(t) $ for the second.

the first becomes

$$\frac 16\int \frac{du}{u-6-6u^2}$$

1

Using you substitution :

Performing a partial fraction decomposition we'll have : $$F(u) = \frac{a_1}{u} +\frac{a_2u+a_3}{6u^2-u+6}$$ Where : $$a_1 = uF(u)\Big\vert_{u=0} = \frac{1}{6}$$ Let's calculate $F(1)$ and $F(-1)$ : $$\begin{cases} F(1)&=\frac{1}{6} +\frac{a_2+a_3}{11} &= \frac{2}{11} \\ F(-1)&=-\frac{1}{6}+\frac{-a_2+a_3}{13} &=-\frac{2}{13} \end{cases} \Longleftrightarrow \begin{cases} a_2+a_3 &=\frac{1}{6} \\ -a_2+a_3&=\frac{1}{6} \end{cases} \Longleftrightarrow \begin{cases}a_2&=0\\ a_3&=\frac{1}{6} \end{cases} $$ Hence you'll get : $$\frac{u^2+1}{u(6u^2-u+6)} = \frac{1}{6u} +\frac{1}{6(6u^2-u+6)}$$ Now I think the only "messy" part is the second term, so let's antidifferentiate it (dunno if this expression exists lol) : $$\frac{1}{6} \int \frac{\mathrm{d}u}{6u^2-u+6} =\frac{1}{6}\int \frac{\mathrm{d}u}{\left(\sqrt{6} u -\frac{1}{2\sqrt{6}}\right)^2+\frac{143}{24}} \qquad \text{Complete the square} $$ Now let $$t=\frac{12u-1}{\sqrt{143}} \Longleftrightarrow \mathrm{d}u = \frac{\sqrt{143}}{12}\mathrm{d}t $$ Therefore : \begin{align} \frac{1}{6} \int \frac{\sqrt{143}}{12\left(\frac{143}{24}t^2+\frac{143}{24}\right)}\mathrm{d}t&= \frac{1}{3\sqrt{143}}\int \frac{\mathrm{d}t}{t^2+1}\\ &=\frac{1}{3\sqrt{143}} \arctan(t) \\ &=\frac{1}{3\sqrt{143}} \arctan\left( \frac{12u-1}{\sqrt{143}} \right)\end{align} Plugging this result to what we got initially : \begin{align} -\int \frac{u^2+1}{u(6u^2-u+6)} \mathrm{d}u &= -\frac{1}{3\sqrt{143}} \arctan\left( \frac{12u-1}{\sqrt{143}} \right)+\frac{1}{6}\int \frac{\mathrm{d}u}{u} \\ &=-\frac{1}{3\sqrt{143}} \arctan\left( \frac{12u-1}{\sqrt{143}} \right)-\frac{1}{6}\ln(u) \\ &=-\frac{1}{3\sqrt{143}} \arctan\left( \frac{12\tan(x)-1}{\sqrt{143}} \right)-\frac{1}{6}\ln(\tan(x))\end{align} Whoops I almost forget the costant : $$\int \frac{\mathrm{d}x}{\sin^2 x \cos^2x-6\sin x\cos x}=-\frac{1}{6}\ln(\tan(x))-\frac{1}{3\sqrt{143}} \arctan\left( \frac{12\tan(x)-1}{\sqrt{143}} \right)+\text{C}$$

euler_med
  • 1,044