MathGroup Archive 2013

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Calculating a simple integral

  • To: mathgroup at smc.vnet.net
  • Subject: [mg131087] Re: Calculating a simple integral
  • From: Andrzej Kozlowski <akozlowski at gmail.com>
  • Date: Mon, 10 Jun 2013 04:13:03 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net
  • References: <20130609083209.86C8769D8@smc.vnet.net> <8984F0D9-AD1E-4ECB-914A-1E3E88498517@mimuw.edu.pl> <CAOg3Lcf+dYe0jq40b8UUf3gucO+6rZxvsm1PfwMSzw1VDpejnw@mail.gmail.com>

On 9 Jun 2013, at 21:45, Dmitry Smirnov <dsmirnov90 at gmail.com> wrote:

> Thanks a lot for all your advises!
>
> Unfortunately none of them works.

What do you mean by that? I sent you a symbolic answer. Is it wrong? Have you checked it.

(Your part 2) has nothing to do with anything that I wrote.)

AK



> Because:
> 1) I have to calculate integral symbolicaly, not numerically.
> 2) It can't be divided into two parts because each of them diverges. However, the whole expression is always finite. For example at the point kz=2*Pi both numerator and denominator turn into zero.
>
> Finally I have taken this one and some similar integrals in other system and saved the results into file.
>
> Thanks again for the efforts!
>
>
> 2013/6/9 Andrzej Kozlowski <akozlowski at gmail.com>
>
> On 9 Jun 2013, at 10:32, dsmirnov90 at gmail.com wrote:
>
> > If there is a way to calculate with Mathematica the following integral:
> >
> > in = -((-1 + Cos[kz])/(kz^2 (kr^2 + kz^2)^2 (kz^2 - 4 \[Pi]^2)^2))
> > Integrate[in, {kz, -Infinity, Infinity}, Assumptions -> kr > 0]
> >
> > Another system calculates the same integral instantly. :)
> >
> > Thanks for any suggestions.
> >
>
>
>
> Which version of Mathematica are you using?
>
> Mathematica does quite quickly calculate answers to this integral for numerical values of kr. For example, for kr=1 I get:
>
> Integrate[(Cos[x] - 1)/(x^2*(x^2 - 4*Pi^2)^2*(x^2 + 1)^2),
>    {x, -Infinity, Infinity}]
>
> (-3*E - 28*E*Pi^2 + 16*(-8 + E)*Pi^4 + 64*(-4 + E)*Pi^6)/(32*
>    E*(Pi + 4*Pi^3)^3)
>
> Numerically this gives:
>
> N[%]
>
> -0.00049113
>
> which agrees with the value returned by NIntegrate, so it should be correct. The general case takes a lot longer but there is still an answer:
>
> Integrate[(Cos[x] - 1)/(x^2*(x^2 - 4*Pi^2)^2*(x^2 + a^2)^2),
>    {x, -Infinity, Infinity}, Assumptions -> a > 0]
>
> (1/(128*a^5*Pi^4*(a^2 + 4*Pi^2)^3))*(-11*a^7*Pi -
>    92*a^5*Pi^3 + 448*a^2*Pi^5 +
>       768*Pi^7 + 2*I*a^7*CosIntegral[2*Pi] +
>    40*I*a^5*Pi^2*CosIntegral[2*Pi] -
>       2*I*a^7*ExpIntegralEi[-2*I*Pi] -
>    40*I*a^5*Pi^2*ExpIntegralEi[-2*I*Pi] +
>       16*a*Pi^(7/2)*(5*a^2 + 4*Pi^2)*MeijerG[{{1/2, 1}, {}},
>           {{-(1/2), 1/2, 1}, {0}}, -((I*a)/2), 1/2] +
>    16*a*Pi^(7/2)*(5*a^2 + 4*Pi^2)*
>         MeijerG[{{1/2, 1}, {}}, {{-(1/2), 1/2, 1}, {0}}, (I*a)/2,
>      1/2] +
>       32*a^3*Pi^(7/2)*
>     MeijerG[{{1/2, 1}, {}}, {{-(1/2), 1, 3/2}, {0}}, -((I*a)/2),
>           1/2] +
>    128*a*Pi^(11/2)*MeijerG[{{1/2, 1}, {}}, {{-(1/2), 1, 3/2}, {0}},
>           -((I*a)/2), 1/2] + 32*a^3*Pi^(7/2)*MeijerG[{{1/2, 1}, {}},
>           {{-(1/2), 1, 3/2}, {0}}, (I*a)/2, 1/2] +
>       128*a*Pi^(11/2)*
>     MeijerG[{{1/2, 1}, {}}, {{-(1/2), 1, 3/2}, {0}}, (I*a)/2,
>           1/2] + 2*a^7*SinIntegral[2*Pi] +
>    40*a^5*Pi^2*SinIntegral[2*Pi])
>
> I have no idea if this is correct or not and don't see how this could be useful. What sort of answer does the other system give? And why do you think this is a "simple" integral? (There might be a way to evaluate it using the calculus of residues but probably it needs some clever trick since the obvious approaches don't seem to work.)
>
>
>
> Andrzej Kozlowski
>
>
>




  • Prev by Date: Re: Calculating a simple integral
  • Next by Date: Re: Unexpected expectation behaviour
  • Previous by thread: Re: Calculating a simple integral
  • Next by thread: Re: Calculating a simple integral