Solving Improper Integrals: Is discontinuity at interval 0 to π/2?

  • Thread starter Thread starter JinM
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
15 replies · 3K views
JinM
Messages
64
Reaction score
0
I had this integral on my final exam and I was wondering at what point in the interval is the improper integral discontinuous?

[tex]\displaystyle\int^{\pi/2}_{0} \frac{cos(x)dx}{sin^{2}(x) - 3sin(x) -4}[/tex]

I know this is solved by partial fraction decomposition, but I don't see how the integral is improper?
 
Last edited:
Physics news on Phys.org
I don't! But that was what the final asked of me -- evaluate the improper integral!
 
JinM said:
I don't! But that was what the final asked of me -- evaluate the improper integral!

Hard to say why they said that then. If you got it right, I wouldn't worry about it.
 
Factor the denominator.
 
Last edited:
Why I couldn't solve it using partials?

1/[(sinx-4)*(sinx+1)] = A/(sin x - 4) + B/(sin x + 1 )

so,
A(sinx+1) + B(sinx-4) = 1

Am I doing some stupid math?
 
rootX said:
Why I couldn't solve it using partials?

1/[(sinx-4)*(sinx+1)] = A/(sin x - 4) + B/(sin x + 1 )

so,
A(sinx+1) + B(sinx-4) = 1

Am I doing some stupid math?

The OP already said it was known it could be solved by partials. Want's to know why it's 'improper'.
 
Dick said:
The OP already said it was known it could be solved by partials. Want's to know why it's 'improper'.

I just wanted solve it for my own fun ;)
I couldn't but MATLAB did:

>> syms x;
>> f = cos(x)/((sin(x))^2-3*(sin(x))-4);
>> int(f,x,0,pi/2)

ans =

-3/5*log(2)+1/5*log(3) = -0.0851937465(approx using google calc)

It's weird that I got "-0.1962" using other software: "Graph"...

P.S. I don't think it was already known though
 
It's improper bc of pi/2.
 
The OP said "I know this is solved by partial fraction decomposition". It's not weird that you got "-0.1962", because that's the correct answer. What is strange is that "google calc" evaluated -3/5*log(2)+1/5*log(3) as -0.0851937465. That's wrong.
 
rootX said:
I just wanted solve it for my own fun ;)
I couldn't but MATLAB did:

>> syms x;
>> f = cos(x)/((sin(x))^2-3*(sin(x))-4);
>> int(f,x,0,pi/2)

ans =

-3/5*log(2)+1/5*log(3) = -0.0851937465(approx using google calc)

It's weird that I got "-0.1962" using other software: "Graph"...

P.S. I don't think it was already known though

Ok. It's not that weird. Why did you use log10?
 
oo thnx!
matlab uses ln for log .. so that was the problem
 
Dick said:
Why? What's going on with this thread?? The denominator is (-6) at x=pi/2!
Oh sorry, I read my factorization incorrectly. I have like sinx+1 but read it as sinx-1, LOL.