I want to solve the Laplace equation in 2 dimensions $(x,y)$ in the quadrant domain $x,y \geq 0$ $$\partial_{x^2} f + \partial_{y^2}f = 0 \; .$$ The boundary conditions I am trying to impose are $$f = 0 \; , \hspace{4mm} \partial_{y}f = g(x) \hspace{4mm} \text{at} \hspace{4mm} y = 0\\ f = 0 \; , \hspace{4mm} \partial_{x}f = h(y) \hspace{4mm} \text{at} \hspace{4mm} x = 0$$ The textbook on linear partial differential equations I am using (Handbook of linear partial differential equations for engineers and scientists) does not cover this case.
Does a solution to these boundary conditions exist? How do I express the solution in terms of the boundary conditions formally?
I am thinking that this problem is very similar to the problem of solving the Laplace equation in the upper half-plane $(-\infty \leq x \leq \infty, y\geq 0)$ with prescribed function value and normal derivative on the lower boundary. To this, I think a solution can be developed by the Fourier transform $$ \hat{f}(k,y) = \frac{1}{\sqrt{2 \pi}} \int_{-\infty}^{\infty} f(x,y) e^{-i k x} dx $$ and $$ \hat{g}(k) = \frac{1}{\sqrt{2 \pi}} \int_{-\infty}^{\infty} g(x) e^{-i k x} dx $$ where $g(x)$ is the normal derivative of $f$ on the lower boundary of the half-plane. The transformed Laplace equation is $$ \nabla^2 f = -k^2 \hat{f} + \partial_{y^2} \hat{f} = 0$$ and the solution is $$ \hat{f}(k,y) = A(k) e^{k y} + B(k) e^{-k y} \; . $$ Using the boundary conditions $$ \left. \partial_{y} \hat{f} \right \vert_{y=0} = \hat{g} = A k - B k \\ \left. \hat{f} \right \vert_{y=0} = 0 = A + B $$ and applying the inverse transform gives the final result $$ f(x,y) = \frac{1}{\sqrt{2 \pi}} \int_{-\infty}^{\infty} \frac{\hat{g}(k)}{2 k} \left[ e^{i k (x-iy)} - e^{i k (x+i y)} \right] d k \; . $$
Is this result correct?
I still need to transform the upper half-plane to the quadrant. I guess I could use the Schwarz-Christoffel transform but I am not sure if this is possible and how it is done.
Do you have any ideas how to do that?
Update: I have obtained as the result in the half-plane $$ f(x,y) = \frac{1}{2 i} \int_{x-iy}^{x+iy} g(\xi) \; d \xi \; . $$ Does this appear correct?
Indeed as you suggested, you can transform one result to the other. Complex map $f(z)=\sqrt{z}$ takes the half-plane coordinates to the quadrant. Now consider what this map does to the boundary condition. Write
$$x+iy=\sqrt{x'+iy'}\iff x'+iy'=(x+iy)^2$$
You also have
$$F(x',y')=f(x,y)$$ And of course, the positive half-axis is mapped from the horizontal leg $(x,0)\mapsto (x^2,0)$ and the negative from the vertical leg, $(0,y)\mapsto (-y^2,0)$.
You need
$$\frac{dF(x',y')}{dy'}=\frac{df(x,y)}{dx}\frac{dx}{dy'}+\frac{df(x,y)}{dy}\frac{dy}{dy'}= \partial_x f(x,y)\frac{1}{2y}+\partial_y f(x,y)\frac{1}{2x}$$
Evaluate at $y'=0$ and $y=0$ (horizontal leg):
$$\frac{dF}{dy'}(x'>0,y'=0)=\frac1{2x}\partial_y f(\sqrt{x'},0)=\frac{1}{2\sqrt{x'}}g(\sqrt{x'})$$ Evaluate at $y'=0$ and $x=0$ (vertical leg): $$\frac{dF}{dy'}(x'<0,y'=0)=\frac1{2y}\partial_x f(0,\sqrt{-x'})=\frac{1}{2\sqrt{-x'}}h(\sqrt{-x'})$$
This tells you exactly how to transform the quadrant boundary condition to the half-plane boundary condition and then solve it there. The inverse mapping simply involves reading the function $f(x,y)=F(x^2-y^2,2xy)$.