Harmonic Function: Two-Dimensional

M.M. Yovanovich

2DHARMONIC1.MWS

> restart:

Two-dimensional harmonic function [Maple Math] is a solution of the two-dimensional Laplace equation [Maple Math] . The parameter [Maple Math] .

> u:= C*ln(sqrt(x^2+y^2));

[Maple Math]

> u_x:= diff(u,x);

[Maple Math]

> u_xx:= diff(u_x,x);

[Maple Math]

> u_y:= diff(u,y);

[Maple Math]

> u_yy:= diff(u_y,y);

[Maple Math]

> u_xx+u_yy;

[Maple Math]

> simplify(%);

[Maple Math]

Use Maple in one step to show that the given harmonic function satisfies the Laplace equation.

> simplify(diff(u,x$2) + diff(u,y$2));

[Maple Math]

Check alternative forms of the harmonic function.

> u2:= C*ln(x^2+y^2);

[Maple Math]

> simplify(diff(u2,x$2) + diff(u2,y$2));

[Maple Math]

> u3:= C*ln(1/sqrt(x^2+y^2));

[Maple Math]

> simplify(diff(u3,x$2) + diff(u3,y$2));

[Maple Math]

>