Create a Gallery of Eigenfunctions for the Laplacian in a Ball
Define a 3D Laplacian operator.
In[1]:=

\[ScriptCapitalL] = -Laplacian[u[x, y, z], {x, y, z}];
Specify homogeneous Dirichlet boundary conditions.
In[2]:=

\[ScriptCapitalB] = DirichletCondition[u[x, y, z] == 0, True];
Find the 16 smallest eigenvalues and eigenfunctions in a ball.
In[3]:=

\[CapitalOmega] = Ball[{0, 0, 0}, 2];
In[4]:=

{vals, funs} =
DEigensystem[{\[ScriptCapitalL], \[ScriptCapitalB]},
u[x, y, z], {x, y, z} \[Element] \[CapitalOmega], 16];
The eigenvalues are given in terms of BesselJZero.
In[5]:=

vals[[1]] // TraditionalForm
Out[5]//TraditionalForm=

Generate a gallery of the eigenfunctions.
show complete Wolfram Language input
Out[6]=
