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

Click For Summary
SUMMARY

The discussion focuses on simplifying a complex triple integral in Mathematica involving unknown constants \(a\), \(S\), and \(J\). Users suggest that scaling out the constant \(a\) can simplify the integral, resulting in a factor of \(a^{-3}\). They recommend differentiating the integral with respect to \(S\) to eliminate the outer square root, leading to a more manageable integrand. Additionally, leveraging symmetries and performing numerical integration for specific parameter values are advised to gain insights into the integral's behavior.

PREREQUISITES
  • Familiarity with triple integrals in calculus
  • Understanding of Mathematica syntax and functions
  • Knowledge of hyperbolic functions, specifically Coth and Csch
  • Basic concepts of numerical integration techniques
NEXT STEPS
  • Explore Mathematica's capabilities for symbolic integration with unknown constants
  • Learn about variable substitution techniques in integrals
  • Investigate numerical integration methods in Mathematica for parameterized integrals
  • Study series expansion techniques for approximating complex integrals
USEFUL FOR

Mathematicians, physicists, and engineers working with complex integrals in Mathematica, particularly those dealing with unknown constants and seeking to simplify their calculations.

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 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
5
Views
2K