How to integrate sqrt(P(sinx)), where P(x) is a polynom

asked 2012-05-10 11:44:54 +0200

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

Hello! I'm trying to calculate a finite parametric integral, but with no success

sage: var('a,b,c')
(a, b, c)
sage: f = a*sin(x)^2+b*sin(x)+c
sage: f
a*sin(x)^2 + b*sin(x) + c
sage: var('A')               
A
sage: integrate(sqrt(f),x,-A,A)
integrate(sqrt(a*sin(x)^2 + b*sin(x) + c), x, -A, A)

Any help would be appreciated!

UPD: A < pi/2

edit retag flag offensive close merge delete

Comments

1

I think your question is not quite well-defined. It is difficult to determine the domain of `sqrt(f)`. For example, if a=1, b=1, c=0 then your integrand is not well-defined on the interval [-A, A] for any positive value of A.

benjaminfjones gravatar imagebenjaminfjones ( 2012-05-10 14:07:30 +0200 )edit