What is the Solution to this Tricky Inverse FT Integral?

  • Thread starter Thread starter skrieger
  • Start date Start date
  • Tags Tags
    Integral Inverse
skrieger
Messages
3
Reaction score
0
I have a tricky integral of the form

∫∫[(L^4)((k_z)^2 + (k_p)^2)^2]/[(L^4)((k_z)^2 + (k_p)^2))^4 + (k_p)^2] * e^(i*k_z*z)*e^(i*k_p*cos(θ-θ_k))*dk_z*dk_p

which is arising in an inverse Fourier transform. I know that integrals somewhat like this appear in smectic liquid crystals but I can't find a solution offhand. It's also one of those things where Mathematica churns and spits out some unreadable nonsense.

Any ideas? No numerics please this is in relation to a Green's fn problem so there is guaranteed to be an analytic solution. Also if anyone thinks this could somehow be simplified by the convolution theorem I'm all ears.

The above is kind of hard to read so I've attached the integral as .png

-Ski
 

Attachments

  • integral.png
    integral.png
    4.5 KB · Views: 568
Physics news on Phys.org
I got an idea. Why not make the notation easier to read? Looks like you have:

\iint \frac{(x^2+y^2)^2}{a(x^2+y^2)^4+y^2}e^{ixz}e^{iyk}dxdy

Is that correct?

Ok, Mathematica does return a single integral expression for that in terms of RootSums. It's completely readable if you know how to interpret the RootSums although it is extremely complex. If that can help you, I could explain how to interpret them.
 
Last edited:
Yes, I could use a different explanation for the RootSums, the one Mathematica gives doesn't help me much. The goal is to reduce this to as simple a form as possible because it still needs to be expressed as part of a larger vector field and differentiated, etc., before it will be useful in my research.
 
Let's look at a simple one:


<br /> \begin{align*}<br /> \int \frac{1}{x^5+11 x+1}dx &amp;=<br /> -\text{RootSum}\left[1+11 \text{$\#$1}+\text{$\#$1}^5\&amp;,\frac{\text{Log}[1-\text{$\#$1}]}{11+5 \text{$\#$1}^4}\&amp;\right]\\ &amp;+\text{RootSum}\left[1+11 \text{$\#$1}+\text{$\#$1}^5\&amp;,\frac{\text{Log}[3-\text{$\#$1}]}{11+5 \text{$\#$1}^4}\&amp;\right]<br /> \label{eq:}<br /> \end{align*}<br />


The RootSum represents a sum of a function over the zeros of a polynomial. The syntax uses "pure functions" using the "#1" as place holders for the variable. So the construct:

1+11#1+#1^5

is to be interpreted as z^5+11z+1 and we want to compute the zeros of z^5+11z+1=0 and then substitute those zeros into the second argument of the RootSum which is also a pure function, and sum them. For example, the first one is:

\frac{\text{Log}[1-\text{$\#$1}]}{11+5 \text{$\#$1}^4}

So say the first root is z_0, then the first term of the sum would be:

\frac{\log(1-z_0)}{11+5 z_0^4}

We can write in general:

\text{RootSum}\left[1+11 \text{$\#$1}+\text{$\#$1}^5\&amp;,\frac{\text{Log}[1-\text{$\#$1}]}{11+5 \text{$\#$1}^4}\&amp;\right]=\sum_{z^5+11z+1=0} \frac{\log(1-z_n)}{11+5 z_n^4}<br />


Here's a Mathematica function you can use if you wish which accepts a RootSum and returns the sum of the RootSum terms:

Code:
mySolution[rs_] := 
 Module[{mysystem, thepoly, theeqn, thevals, thesols},
  mysystem = rs /. RootSum[val___, ans_] :> {val, ans};
  thepoly = mysystem[[1]];
  theeqn = thepoly[y] == 0;
  thevals = y /. Solve[theeqn, y];
  Plus @@ mysystem[[2]] /@ thevals
  ]
 
Ok, that makes sense. A ridiculous amount of terms, but that happens sometimes. Thanks!
 
Back
Top