PDA

View Full Version : How to solve this partial differential equation which is a Laplace equation


dimension10
Nov9-11, 10:22 PM
I was trying to solve this partial differential equation which arose because I wanted to find a general solution to the Laplace equation in the case f=f(x,y).

\frac{{\partial}^{2}f}{{\partial x}^{2}}+\frac{{\partial}^{2}f}{{\partial y}^{2}}=0

Thanks in advance.

romsofia
Nov9-11, 11:13 PM
The general solution would be a harmonic function, if there was a general solution for an unbounded Laplace equation. The reason why I said "would be" is because without bounds, the Laplace equation has an infinite number of solutions.

You really have to give the boundary conditions when dealing with Laplace equation, and in general for PDEs, boundary and initial conditions.

jackmell
Nov10-11, 06:20 AM
The general solution is:

f(x,y)=g(z)+h(\overline{z}),\quad z=x+iy

where g and h are arbitrary C^2 functions of a single variable z=x+iy. We can show this by factoring the equation:

\left(\frac{\partial^2}{\partial x^2}+\frac{\partial^2}{\partial y^2}\right) f=\left(\frac{\partial}{\partial x}-i\frac{\partial}{\partial y}\right)\left(\frac{\partial}{\partial x}+i\frac{\partial}{\partial y}\right)=\left(\frac{\partial}{\partial x}-i\frac{\partial}{\partial y}\right)u=0

where:

u=\frac{\partial f}{\partial x}+i\frac{\partial f}{\partial y}

So first solve:

u_t-iu_x=0

which is an easy first-order equation which turns out to be u=g(x+it) then substitute that into:

f_x+if_y=g(x+it)

another easy one to obtain so that the general solution is:

f(x,y)=g(x+it)+h(x-it)

Note that means the general solution is not analytic since it contains \overline{z} but analyticity is not a requirement for the solution but only differentiability.

dimension10
Nov11-11, 12:47 AM
The general solution is:

f(x,y)=g(z)+h(\overline{z}),\quad z=x+iy

where g and h are arbitrary C^2 functions of a single variable z=x+iy. We can show this by factoring the equation:

\left(\frac{\partial^2}{\partial x^2}+\frac{\partial^2}{\partial y^2}\right) f=\left(\frac{\partial}{\partial x}-i\frac{\partial}{\partial y}\right)\left(\frac{\partial}{\partial x}+i\frac{\partial}{\partial y}\right)=\left(\frac{\partial}{\partial x}-i\frac{\partial}{\partial y}\right)u=0

where:

u=\frac{\partial f}{\partial x}+i\frac{\partial f}{\partial y}

So first solve:

u_t-iu_x=0

which is an easy first-order equation which turns out to be u=g(x+it) then substitute that into:

f_x+if_y=g(x+it)

another easy one to obtain so that the general solution is:

f(x,y)=g(x+it)+h(x-it)

Note that means the general solution is not analytic since it contains \overline{z} but analyticity is not a requirement for the solution but only differentiability.

Thanks.