I am working on a a 4th order linear PDE coming from the modified wave equation of a stiff material. I have radial symmetry which has lead me to a 4th order ODE in $r$:
$r^3 R''''(r) + 2r^2 R'''(r) - rR''(r)+R'(r) = m^4 r^3 R$
where $m^4$ is a constant. This ODE is subject to boundary conditions:
$|R(0)|<\infty$, $|R'(0)|<\infty$, $R''(R)=0$, $R'''(R)=0$,
where $R$ is the radius of my circle. I know that the solution should be in terms of Bessel functions as is typical of problems of this type. Mathematica gives solutions in terms of Bessel functions and Meijer G functions. Looking at the basic formulation (from wikipedia) of the Meijer G functions I do not see how this is obviously a solution (not implying it is obvious, I am implying that I do not see how it fits).
My first question is if someone can help me get to the Meijer G formulation or present to me useful information on how this DE relates to Meijer G functions. Secondly, is there anyway to rewrite this to get it in terms of Bessel functions (I do not think this is the case because they fulfill second order ODEs). Is the analytic solution of this easy (easy in terms of doable at a beginning graduate level) or is it very convoluted?
EDIT: I went back to the original formulation of the problem and found:
$\left( \frac{1}{r}\frac{d}{dr} \left\{ r \frac{d}{dr} \right\} \right) R(r) = m^4 R(r)$.
Now, instead of expanding, I found that I can consider this as two PDEs:
$\left( \frac{1}{r}\frac{d}{dr} \left\{ r \frac{d}{dr} \right\} \right) R(r) = k^2 R(r)$
and
$\left( \frac{1}{r}\frac{d}{dr} \left\{ r \frac{d}{dr} \right\} \right) R(r) = -k^2 R(r)$.
From this standpoint the solution becomes much easier to understand in terms of Bessel Functions. I will be posting a solution below.
Perhaps the most direct approach should use the Frobenius method:
Let $R(r)=\sum\limits_{n=0}^\infty a_nr^{n+k}$ ,
Then $R'(r)=\sum\limits_{n=0}^\infty(n+k)a_nr^{n+k-1}$
$R''(r)=\sum\limits_{n=0}^\infty(n+k)(n+k-1)a_nr^{n+k-2}$
$R'''(r)=\sum\limits_{n=0}^\infty(n+k)(n+k-1)(n+k-2)a_nr^{n+k-3}$
$R''''(r)=\sum\limits_{n=0}^\infty(n+k)(n+k-1)(n+k-2)(n+k-3)a_nr^{n+k-4}$
$\therefore r^3\sum\limits_{n=0}^\infty(n+k)(n+k-1)(n+k-2)(n+k-3)a_nr^{n+k-4}+2r^2\sum\limits_{n=0}^\infty(n+k)(n+k-1)(n+k-2)a_nr^{n+k-3}-r\sum\limits_{n=0}^\infty(n+k)(n+k-1)a_nr^{n+k-2}+\sum\limits_{n=0}^\infty(n+k)a_nr^{n+k-1}=m^4r^3\sum\limits_{n=0}^\infty a_nr^{n+k}$
$\sum\limits_{n=0}^\infty(n+k)(n+k-1)(n+k-2)(n+k-3)a_nr^{n+k-1}+\sum\limits_{n=0}^\infty2(n+k)(n+k-1)(n+k-2)a_nr^{n+k-1}-\sum\limits_{n=0}^\infty(n+k)(n+k-1)a_nr^{n+k-1}+\sum\limits_{n=0}^\infty(n+k)a_nr^{n+k-1}-\sum\limits_{n=0}^\infty m^4a_nr^{n+k+3}=0$
$\sum\limits_{n=0}^\infty(n+k)(n+k-1)^2(n+k-2)a_nr^{n+k-1}-\sum\limits_{n=0}^\infty(n+k)(n+k-2)a_nr^{n+k-1}-\sum\limits_{n=0}^\infty m^4a_nr^{n+k+3}=0$
$\sum\limits_{n=0}^\infty(n+k)((n+k-1)^2-1)(n+k-2)a_nr^{n+k-1}-\sum\limits_{n=0}^\infty m^4a_nr^{n+k+3}=0$
$\sum\limits_{n=0}^\infty(n+k)^2(n+k-2)^2a_nr^{n+k-1}-\sum\limits_{n=4}^\infty m^4a_{n-4}r^{n+k-1}=0$
$k^2(k-2)^2a_0r^{k-1}+(k+1)^2(k-1)^2a_1r^k+(k+2)^2k^2a_2r^{k+1}+(k+3)^2(k+1)^2a_3r^{k+2}\sum\limits_{n=4}^\infty((n+k)^2(n+k-2)^2a_n-m^4a_{n-4})r^{n+k-1}=0$
$\therefore k^2(k-2)^2=0$
$k=0,2$
Can you take it from here?