Mathematica How can I simplify this triple integral with unknown constants in Mathematica?

AI Thread Summary
The integral in question involves a three-dimensional integral with a complex integrand that includes hyperbolic cotangent and cosine functions. Users have noted difficulties in obtaining a result from Mathematica due to the presence of unknown constants. Suggestions for resolving the issue include scaling out the constant 'a' from the integral, which simplifies the problem by introducing a factor of a^{-3}. Differentiating the integral with respect to the constant S can help eliminate the outer square root, leading to a more manageable integrand. Participants recommend leveraging symmetries and variable changes to simplify the expression further, as well as exploring numerical integration for specific values of the parameters. They also advise tackling lower-dimensional integrals first to gain insights into the higher-dimensional case. The discussion encourages ongoing questions and sharing of results for collaborative problem-solving.
Petar Mali
Messages
283
Reaction score
0
I need to calculate integral

\int^{\frac{2\pi}{a}}_{0}\int^{\frac{2\pi}{a}}_{0}\int^{\frac{2\pi}{a}}_{0}\frac{1}{\sqrt{1-\frac{(cosxa+cosya+cosza)^2}{9}}}ctgh(\frac{6SJ\sqrt{1-\frac{(cosxa+cosya+cosza)^2}{9}}}{2T})dxdydz

a,S,J are constants different then 0.

I try to use Mathematica

N[\int^{\frac{2\pi}{a}}_{0}\int^{\frac{2\pi}{a}}_{0}\int^{\frac{2\pi}{a}}_{0}\frac{Coth[\frac{6SJ\sqrt{1-\frac{(Cos[x a]+Cos[y a]+Cos[z a])^2}{9}}}{2T}]}{\sqrt{1-\frac{(Cos[x a]+Cos[y a]+Cos[z a])^2}{9}}}dxdydz]

I try also to define a>0 but Mathematica don't give a result. Where is a problem? How can I dodefine this? Thanks for your answer.
 
Physics news on Phys.org
Since it seems that Mathematica cannot do

Integrate[Coth[Sqrt[1 - Cos[x]^2/9]]/Sqrt[1 - Cos[x]^2/9], {x, 0, 2*Pi}]

it seems very unlikely it will be able to do your full problem
 
Last edited:
N[] won't work because you have unknown constants in the integral.

All of the a's can be scaled out of the integral to give a factor of a^{-3}.
If you differentiate the integral wrt S then you remove the outer square root.
You're left with an integrand like Csch[S Sqrt[1-()^2]]^2

Then you might need to start being smart -- try using the symmetries and changes of variables to simplify it down. Sqrt[1-()^2] makes you think of cos^2+sin^2=1...

In terms of aiding mathematica -- I've already removed the constant 'a' from the integral. All of the other constants can be combined into one. Too many free parameters (even if they can be combined) often make it more difficult for the integration routine.

Since there is only one parameter left, you can try (numerically) integrating for various values of the parameter -- eg low integers. This might give you some clues and you might be able to guess what the final form is. Also maybe a series expansion...

Also try doing the 1 and 2 dimensional problems first - see if that gives you any ideas.

Post any more questions and results here for us to look at.

Good luck
 

Similar threads

Replies
1
Views
2K
Replies
2
Views
1K
Replies
13
Views
2K
Replies
2
Views
2K
Replies
9
Views
3K
Replies
1
Views
2K
Replies
10
Views
12K
Back
Top