Definite integral with some unknown variables

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
2 replies · 2K views
shinobi20
Messages
277
Reaction score
20
TL;DR
I am evaluating a definite integral with unknown variables in Mathematica.
I am trying to evaluate an integral with unknown variables ##a, b, c## in Mathematica, but I am not sure why it takes so long for it to give an output, so I just decided to cancel the running. The integral is given by,

##\int_0^1 dy \frac{ y^2 (1 - b^3 y^3)^{1/2} }{ (1 - a^4 c^2 y^4)^{1/2} }##
 
on Phys.org
Depending on the values of ##a, b, c## you can expect singularities in the integrand that may make the integral improper or even non-convergent. So, if the problem allows it, you should probably tell the software explicitly about assumptions on ##a, b, c##.

For example, I would begin by defining ##d := a^4 c^2## and passing the assumption that ##d < 1##.
 
Last edited:
  • Like
Likes   Reactions: Dale
S.G. Janssens said:
Depending on the values of a,b,c you can expect singularities in the integrand that may make the integral improper or even non-convergent. So, if the problem allows it, you should probably tell the software explicitly about assumptions on a,b,c.

For example, I would begin by defining d:=a4c2 and passing the assumption that d<1.
This is my code

Code:
d=2;
z=1;
b=a/z;
h=c^2 a^2d;
Integrate[ ( y^d (1 - (b y)^(d+1))^1/2 )/(1 - h^2d y^2d)^1/2 , {y,0,1}, Assumptions -> {y>0, h<1} ]

It does not return anything.