Let $\Omega$ define the quadrant $0\leq x\leq L$, $0\leq y\leq L$.
For $z=z(x,y)$ we want to solve Eulers equation for the functional:
$\int\int_\Omega \big((z_x)^2+(z_y)^2\big)dxdy$
where $z=0$ along the contour $\partial\Omega$, under the additional condition that $\int\int_\Omega z^2dxdy=1$
How should I solve this ? I have Eulers equation:
\begin{equation} \frac{d}{dx}\frac{\partial F}{\partial y'}-\frac{\partial F}{\partial y}=0 \end{equation}
but how do I use this on the problem? Is $F=\int\int_\Omega \big((z_x)^2+(z_y)^2\big)dxdy$ or is $F=\big((z_x)^2+(z_y)^2$ ?
Thanks
UPDATE:
Accounting for that $F=\big((z_x)^2+(z_y)^2\big)$, I insert it in the Euler Lagrange equation:
\begin{equation} F_z-\frac{\partial}{\partial x}F_{z_x}-\frac{\partial}{\partial y}F_{z_y}=0 \end{equation}
This gives:
\begin{equation} 2(z_x){_z}+2(z_y){_z}-2z_{xx}-2z_{yy}=0 \end{equation}
I write $2(z_x){_z}+2(z_y){_z}=\Delta z$ and obtain
\begin{equation} \Delta z =2z_{xx}+2z_{yy} \end{equation}
We set $\Delta z = \lambda^2$ and get the Laplace equation:
\begin{equation} 2z_{xx}+2z_{yy}=\lambda^2 \end{equation}
which gives the two ODEs by separation of variables:
\begin{equation} \frac{2F_{xx}}{F}=\lambda^2\\ -\frac{2G_{yy}}{G}=\lambda^2\\ \end{equation}
resulting in:
\begin{cases} 2F_{xx}-\lambda^2F=0 \\ 2G_{yy}+\lambda^2G=0 \end{cases}
which should be solvable.
My attempt to solve this is:
\begin{equation} -2F_{xx}+\lambda^2F=0 \rightarrow m=\frac{\pm\sqrt{-4\cdot(\frac{-\lambda^2}{2})}}{2}\rightarrow m=\pm\frac{\sqrt{2}\lambda_x}{2} \end{equation}
This gives in exponential terms:
\begin{equation} f(x)=\exp(\frac{\sqrt{2}\lambda_x}{2}x)+\exp(-\frac{\sqrt{2}\lambda_x}{2}x) \end{equation}
For the second ODE:
\begin{equation} 2G_{yy}+\lambda^2G=0 \rightarrow m=\pm\frac{i\sqrt{2}\lambda_y}{2} \end{equation}
This gives in sine and cosine terms:
\begin{gather}g(y)= \begin{cases} A\cos(\frac{\sqrt{2}\lambda_y}{2}y)\\ B\sin(\frac{\sqrt{2}\lambda_y}{2}y) \end{cases} \end{gather} Since $z=fg$
\begin{equation} z_1(x,y)=e^{(\frac{\sqrt{2}\lambda_x}{2})x}\big(A\cos(\frac{\sqrt{2}\lambda_y}{2}y)+B\sin(\frac{\sqrt{2}\lambda_y}{2}y)\big)\\ z_2(x,y)=e^{(-\frac{\sqrt{2}\lambda_x}{2})x}\big(A\cos(\frac{\sqrt{2}\lambda_y}{2}y)+B\sin(\frac{\sqrt{2}\lambda_y}{2}y)\big) \end{equation}
But since the boundaries include that $z(0)=0$, the cosine terms vanish: \begin{equation} z_1(x,y)=e^{(\frac{\sqrt{2}\lambda_x}{2})x}\big(B\sin(\frac{\sqrt{2}\lambda_y}{2}y)\big)\\ z_2(x,y)=e^{(-\frac{\sqrt{2}\lambda_x}{2})x}\big(B\sin(\frac{\sqrt{2}\lambda_y}{2}y)\big) \end{equation}
Summing these up:
\begin{equation} z(x,y)=C\bigg(e^{(-\frac{\sqrt{2}\lambda_x}{2})x}-e^{(\frac{\sqrt{2}\lambda_x}{2})x}\bigg)\sin(\frac{\sqrt{2}\lambda_y}{2}y) \end{equation}
Then I tried out my "theory", which seems wrong, where I integrated twice these eigenfunctions over the quadrant , but I got an answer which makes no sense:
\begin{equation} \int_0^1\int_0^1 z_1(x,y)dxdy=\frac{1}{\lambda^2} \bigg(e^{\lambda/\sqrt{2}}(\cos(\lambda/\sqrt{2})-1\bigg) \end{equation}
So integrating the eigenfunction over the quadrant to account for the precondition is not working.
Assuming the ODE solutions $z_1$ and $z_2$ are correct, would that be sufficient to describe the solution to the functional? I remind that the boundaries of the quadrant are not taken into account, since this last "theory" is wrong. If those two ODE solutions are not sufficient, how does one account for the precondition in this, at this final stage?
An image of this solution $z(x,y)$ is
But instead, Digers solution which is correct looks like:


In any case, $$-\Delta z = \lambda z$$ is an eigenvalue equation.
– Diger Mar 23 '22 at 11:13