Need alternate solution to a problem

  • Thread starter Thread starter Davidk1
  • Start date Start date
Davidk1
Messages
3
Reaction score
0
Hi, I posted a thread earlier with

int/ 1/(1-x^2)^3

I was able to solve it w/ partial fractions but it took 4 pages...
Can you do this problem w/o partial fractions

Please help :(
 
Physics news on Phys.org
No, partial fractions is the right way to do it.
 
Try using substitution
x = sin t ?

I got int {1/cos^2 t}.dt
There might be a shortcut to solve this in one line ...
 
rootX said:
Try using substitution
x = sin t ?

I got int {1/cos^2 t}.dt
There might be a shortcut to solve this in one line ...

I get that there would be a cos upstairs and a cos^6 downstairs so it becomes 1/Cos^5, or sec^5. Not sure if that would be any easier than partial fractions.
 
Chrisas said:
I get that there would be a cos upstairs and a cos^6 downstairs so it becomes 1/Cos^5, or sec^5. Not sure if that would be any easier than partial fractions.

let's see:
=1/(1-x^2)^3 .dx

x = sin (t)
dx = cos(t).dt

subs:
=cos/(1-sin^2)^3 .dt

=1/cos^5 dt

Yes, you are right, I forgot (^3).

It seems messier

>> syms x;
>> f = sec(x)^5

f =

sec(x)^5


>> int(f,x)

ans =

1/4/cos(x)^4*sin(x)+3/8/cos(x)^2*sin(x)+3/8*log(sec(x)+tan(x))
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top