Need alternate solution to a problem

  • Thread starter Thread starter Davidk1
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 2K views
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))