I'm now stucking how to solve
$$f(x)=\int_{-w/2}^{w/2} \log(|x-x'|)\frac{d^2 f(x')}{dx'^2}$$
($w$>0) for $f(x)$.
I get this self-consistent equation solving Maxwell-equation.
From symmetry, $f(x)$ can be devided into 2 region,
$$-w/2≦x≦w/2$$
and
$$|x|>w/2$$
and can be assumed $f(x)=-f(-x)$ from physical constrants.
But this is too hard for me to solve. If you have any idea how to solve this (including numerical method or special case) , please help me.
Making
$$ y_n(x) = \sum_{k=0}^n a_k x^k $$
with $a_0, a_1$ allocated to initial conditions, and developing in series
$$ \ln(x-z) = ((x-z)-1)-\frac{1}{2} ((x-z)-1)^2+\frac{1}{3} ((x-z)-1)^3-\frac{1}{4} ((x-z)-1)^4+\cdots+O\left(((x-z)-1)^{n}\right) $$
we can establish
$$ y_n(x)=\int_{-\frac w2}^{\frac w2}\ln(x-z)y_n''(z)dz $$
and using the $a_k$ coefficient rules we can build a sequence of approximations for $y(x) = \lim_{n\to\infty}y_n(x)$
Follows a MATHEMATICA script which makes those calculations. Attached a plot showing the convergence.
This example has the parameters $a_0 = 0,a_1 = -1, w= 10$
NOTE
The series for $\ln(x)$ does not converges uniformly on $\mathbb{R}_+$ and as a consequence the series for $y(x)$ suffers the same problem. Also the convergence for $y_n$ is affected by the $w$ range. According with the observed behavior it seems as
$$ \lim_{n\to\infty}y_n(x) = a_0 + a_1 x $$