MHB How to calculate this type of integral, Thanks

Click For Summary
The discussion centers on the difficulty of calculating two specific integrals involving arcsine functions. The first integral is deemed unsolvable using Wolfram Dev Platform, while the second integral is acknowledged as messy but manageable. The provided Wolfram Language code yields a complex expression that includes logarithmic and inverse tangent functions, suggesting that the result is not very practical for use. Despite the complexity, it is considered the best available solution for the indefinite integral. Overall, the conversation highlights the challenges of integrating these specific mathematical functions.
zhaojx84
Messages
8
Reaction score
0
$$\int {z}^{2}\arcsin\left({\frac{a+\sqrt{392-{a}^{2}-2{z}^{2}}}{2 \sqrt{196-{z}^{2}}}}\right) dz$$
$$\int {z}^{2}\arcsin\left({\frac{a}{\sqrt{196-{z}^{2}}}}\right) dz$$
 

Attachments

  • 新建位图图像5.jpg
    新建位图图像5.jpg
    12.5 KB · Views: 122
Physics news on Phys.org
Hmm. For the first integral, I would sit down and cry. Wolfram Dev Platform doesn't do anything with it. The second integral is doable, but extremely messy. The Wolfram Langauge code
Code:
FullSimplify[Integrate[z^2 ArcSin[a/(Sqrt[196-z^2])],z] ]//TeXForm
yields
$$\frac{1}{6}\left(-a\sqrt{196-z^2}z\sqrt{\frac{a^2+z^2-196}{z^2-196}}+2744i
\left(\ln\left(\frac{3i\left(ia\sqrt{196-z^2}
\sqrt{\frac{a^2+z^2-196}{z^2-196}}+a^2-14(z+14)\right)}{686a^2
(z+14)}\right)-\ln\left(\frac{3\left(a\sqrt{196-z^2}
\sqrt{\frac{a^2+z^2-196}{z^2-196}}-ia^2-14i(z-14)\right)}{686a^2
(z-14)}\right)\right)-a\left(a^2-588\right)\tan
^{-1}\left(\frac{z}{\sqrt{196-z^2}\sqrt{\frac{a^2+z^2-196}{z^2-196}}}\right)+2
z^3\sin^{-1}\left(\frac{a}{\sqrt{196-z^2}}\right)\right).$$
I did tinker with this output just a hair (log to ln). This is not a very useable solution, but I think it's the best you're going to get for an indefinite integral.
 
Ackbach said:
Hmm. For the first integral, I would sit down and cry. Wolfram Dev Platform doesn't do anything with it. The second integral is doable, but extremely messy. The Wolfram Langauge code
Code:
FullSimplify[Integrate[z^2 ArcSin[a/(Sqrt[196-z^2])],z] ]//TeXForm
yields
$$\frac{1}{6}\left(-a\sqrt{196-z^2}z\sqrt{\frac{a^2+z^2-196}{z^2-196}}+2744i
\left(\ln\left(\frac{3i\left(ia\sqrt{196-z^2}
\sqrt{\frac{a^2+z^2-196}{z^2-196}}+a^2-14(z+14)\right)}{686a^2
(z+14)}\right)-\ln\left(\frac{3\left(a\sqrt{196-z^2}
\sqrt{\frac{a^2+z^2-196}{z^2-196}}-ia^2-14i(z-14)\right)}{686a^2
(z-14)}\right)\right)-a\left(a^2-588\right)\tan
^{-1}\left(\frac{z}{\sqrt{196-z^2}\sqrt{\frac{a^2+z^2-196}{z^2-196}}}\right)+2
z^3\sin^{-1}\left(\frac{a}{\sqrt{196-z^2}}\right)\right).$$
I did tinker with this output just a hair (log to ln). This is not a very useable solution, but I think it's the best you're going to get for an indefinite integral.

Thank you very much. Regards.