
4.3. BEYOND CARTESIAN COORDINATES 159
at all. After a while, they assume that it always works. It turns out that the
scalar Helmholtz equation, ∇
2
S +k
2
S = 0, which is the spatial part of either the
wave or diffusion equations with k a constant, is separable [MF53] in 11, and
only 11, 3-dimensional orthogonal curvilinear coordinate systems. Fortunately,
these include spherical polar and cylindrical coordinates, which are the two
most commonly used non-Cartesian systems. An example of a 3-dimensional
coordinate system for which the Helmholtz equation is not separable are the
bispherical coordinates u, v, w, which are related to x, y, z by
x =
a sin u cos v
cosh w − cos u
,y=
a sin u sin v
cosh w − cos u
,z=
a sinh w
cosh w − cos u
. (4.8)
Here a is a scale factor and 0 ≤ u<π,0≤ v ≤ 2 π, −∞ <w<∞.
As the following recipe illustrates, Laplace’s equation is not separable in
bispherical coordinates either, but can be separated into three ODEs by a mod-
ified separation assumption. This is useful, e.g., in determining the potential
outside two spheres of equal diameters, held at different potentials, and with
their centers separated by a distance greater than the sphere diameter.
2
Although, the bispherical system is known (with a =1)toMaple,itis
instructive to tackle the following problem from first principles.
(a) Plot the contours in the x-z plane corresponding to holding u and w fixed.
What surfaces are generated if v is constant?
(b) Calculate the scale factors and the Laplacian operator.
(c) Show that Laplace’s equation is not completely separable if one makes
the “standard” ansatz, S(u, v, w)=U(u) V (v) W (w).
(d) Show that Laplace’s equation is completely separable if one assumes that
S(u, v, w)=
(cosh w − cos u) U(u) V (v) W (w). Assuming that cosh w>
cos u, identify any special functions which occur in the separated ODEs.
It is assumed that u ≥ 0, u<π, v ≥ 0, v ≤ 2π, and cosh w>cos u.The
coordinate relations are then entered.
>
restart: with(plots): assume(u>=0,u<Pi,v>=0,v<=2*Pi,
cosh(w)>cos(u)):
>
x:=a*sin(u)*cos(v)/(cosh(w)-cos(u));
>
y:=a*sin(u)*sin(v)/(cosh(w)-cos(u));
>
z:=a*sinh(w)/(cosh(w)-cos(u));
To plot the surfaces corresponding to holding w fixed, let’s form X
2
+ Y
2
+
(Z − a coth w)
2
=x
2
+ y
2
+(z − a coth w)
2
and simplify the right-hand side.
>
eq1:=Xˆ2+Yˆ2+(Z-a*coth(w))ˆ2
=simplify(xˆ2+yˆ2+(z-a*coth(w))ˆ2);
eq1 := X
2
+ Y
2
+(Z −a coth(w))
2
=
a
2
sinh(w)
2
The result is the equation of a sphere of radius a/ sinh w centered at X =0,
2
An excellent source of electrostatic problems in bispherical and other coordinate systems
is Problems in Mathematical Physics by Lebedev, Skal’skaya, and Uflyand (Pergamon, 1966).