I came across the following functional equation : $$\partial_t \phi(t,x) = a -(x+a)\phi(t,x)+ x \left[ \int_0^\infty \nu(x,y) \phi(t,y) dy \right]^2 $$ where $\nu(x,y)$ is a log-normal distribution function: $$\nu(x,y)=\frac{1}{\sqrt{2\pi} \sigma y} \exp \left(-\frac{(\log y - \log x)^2}{2\sigma^2} \right)$$ In this, $a$ is positive, $x$ and $t$ are positive, and initial conditions are $\phi(0,x)=\phi_0$ for all $x$, $0 < \phi_0 < 1$.
I'm solving this numerically (by discretization of the integral) but I need a lot of values of $x$ and this takes a lot of computing time. I'm wondering if there are some methods to simplify the computation or improve the convergence, or even better if there is a closed form !
I tried to find the limit as $t\rightarrow \infty$ but I cannot solve the integral equation, is there some way to do it ?
Edit :
I tried to expand in $x$ as suggested below but the series is badly divergent because of $e ^{n^2}$ like terms and does not approximate well the numerical solution.
I thought of defining an operator $$A[\phi(x)]=\int_0^\infty \nu(x,y) \phi(t,y) dy$$ and solve the differential equation as an ODE $$\partial_t \phi = a - B \phi + x[A\phi]^2$$ and then interpret the solution as an analytic series of the operators $B$ and $A^{-1}$. Does this have any chance of succeeding, and if so how can we invert $A$ ?
Just to be clear, my main goal is to improve the speed and reliability of the numerical integration of the above equation (the computation is long and I have to cut off the integral at some point). I'll be also happy if some analytic properties of the solution can be found.
As I was looking at the Wikipedia page for the log-normal distribution I noticed that it apparently has the property. $$E[X^n] = e^{n\mu + n^2 \sigma^2 /2}$$ This I find a bit suggestive as using your variation of the distribtion it seems to imply $$\int_0^\infty \nu(x,y)y^n \, dy = e^{n\log x + n^2\sigma^2/2}= x^n e^{n^2 \sigma^2 /2}$$ meaning $x^n$ is sort of an eigenfunction of the integration operator. I'm sure that can be used somehow but my initial attempt to exploit it was just introducing a series representation of the function $$\phi(t,x) = \sum_{n = 0}^\infty c_n(t)x^n$$ and inserting it into the equation. This doesn't seem to end up working but is at least an idea. Firstly
$$\int_0^\infty \nu(x,y)\phi(t,y)\, dy = \sum_{n = 0}^\infty c_n(t)x^ne^{n^2 \sigma^2 /2}$$ then squaring the series and applying cauchy product formula $$\left (\sum_{n = 0}^\infty c_n(t)x^ne^{n^2 \sigma^2 /2} \right )^2 = \sum_{n = 0}^\infty \left (\sum_{k = 0}^n c_{k}(t)e^{k^2\sigma^2/2}c_{n-k}(t)e^{(n-k)^2\sigma^2/2} \right )x^n$$ followed by some simplifications $$\left (\sum_{n = 0}^\infty c_n(t)x^ne^{n^2 \sigma^2 /2} \right )^2 = \sum_{n = 0}^\infty \left (\sum_{k = 0}^n c_{k}(t)c_{n-k}(t)e^{n(n - 2k)\sigma^2/2}\right )x^n$$
Plugging everything into the original equation we get this mess
$$\sum_{n = 0}^\infty c_n'(t)x^n = a - (x + a)\sum_{n = 0}^\infty c_n(t)x^n + x \sum_{n = 0}^\infty \left (\sum_{k = 0}^n c_{k}(t)c_{n-k}(t)e^{n(n - 2k)\sigma^2/2}\right )x^n$$
where after collecting all the sums we finally obtain
$$\sum_{n = 0}^\infty c_n'(t)x^n = a - ac_0(t) + \sum_{n = 1}^\infty \left (\sum_{k = 0}^{n-1} c_{k}(t)c_{n-1-k}(t)e^{(n-1)(n-1- 2k)\sigma^2/2} - ac_n(t) - c_{n-1}(t)\right ) x^n$$
Then you can maaybe you could truncate this and set up differential equation
$$c_n'(t) = f_n(c_1(t), c_2(t), ..., c_N(t)), \quad (0\leq n \leq N)$$
where at least you don't have to deal with the integral anymore but the $e^{n^2\sigma^2/2}$-factors are kind of scary when it comes to convergence and I'm reserved as to whether it works.
EDIT A few hours later looking at this it makes a lot more sense to incorporate the exponential factors in the series expansion instead, that is starting from the series exansion $$\phi(t,x) = \sum_{n = 0}^\infty c_n(t)e^{-n^2 \sigma^2 / 2}x^n$$
$$\sum_{n = 0}^\infty c_n'(t)e^{-n^2 \sigma^2 / 2}x^n = a - ac_0(t) + \sum_{n = 1}^\infty \left (\sum_{k = 0}^{n-1} c_{k}(t)c_{n-1-k}(t)- ac_n(t)e^{-n^2 \sigma^2 / 2} - c_{n-1}(t)e^{-(n-1)^2 \sigma^2 / 2}\right ) x^n$$ Which renders a somewhat simpler form of the associated differential equation $$c_n'(t) = e^{n^2\sigma^2/2}\sum_{k = 0}^{n-1} c_{k}(t)c_{n-1-k}(t) - ac_n(t) - c_{n-1} e^{(2n + 1)\sigma^2/2}, \quad (n \geq 1)$$