radsymell.mws
Radial-symmetric solutions of linear elliptic equations
by
Aleksas Domarkas
Vilnius University, Faculty of Mathematics and Informatics,
Naugarduko 24, Vilnius, Lithuania
aleksas@ieva.mif.vu.lt
NOTE:
In this session we find radial-symmetric solutions of linear elliptic equations.
Introduction
Please input number of examples k (1..6), dimension n (2, 3, ...) and Execute Worksheet
Operators
Examples of
elliptic
operators:
> |
L[1]:=sum(D[i]@@2,i=1..n):#Laplacian;
|
> |
L[2]:=sum(D[i]@@2,i=1..n)+(x->4*x):#Helmholtz equation
|
> |
L[3]:=L[1]@L[1]:#Laplacian^2;
|
> |
L[6]:=L[1]@@3:#Laplacian^3
|
Solution
> |
x := ('x||i' $ i =1..n);
|
> |
X2 := sum( 'x||i^2', i=1..n);
|
> |
f := unapply( g(X2), x);
|
> |
Lu:=convert(expand(L(F)(x)),diff):
|
> |
w := simplify( L(f)(x), {X2=t} );
|
> |
f:=map(simplify,rhs(%));
|
Example
The radial-symmetric solution of equation
is
where
Checking the Solution
> |
sol:=u(x)=subs(t=X2,f);
|
> |
simplify(subs(sol,Lu));
|
While every effort has been made to validate the solutions in this worksheet, Waterloo Maple Inc. and the contributors are not responsible for any errors contained and are not liable for any damages resulting from the use of this material.
Back to contents