
8.4. NONLINEAR PDES 331
reported a solitary wave solution to the following nerve fiber equation,
∂
2
φ
∂x
2
=
∂φ
∂t
+ φ (φ − A)(φ − 1), (8.28)
with A a constant, and the solitary wave having a velocity V =(1− 2 A)/
√
2.
Equation (8.28) is just the linear diffusion equation to which a cubic nonlinear
term has been added for the electric potential φ. In the absence of the nonlinear
term, the diffusion velocity is infinite.
By assuming that φ(x, t)=X(z)withz = x − Vtand creating a phase-
plane portrait, Y = dX/dz vs. X(z), we shall graphically see that an anti-kink
solitary wave solution to (8.28) does exist. This graphical approach has also
been successfully used by one of my former graduate students to establish the
existence of solitary wave solutions to a very formidable nonlinear optical PDE
where an analytical solution was not possible.
5
Loading the DEtools library package, let’s take, say A =1/4 and calculate
the velocity V given by Nagumo.
>
restart: with(DEtools):
>
A:=1/4: V:=(1-2*A)/sqrt(2);
V :=
√
2
4
Assuming φ(x, t)=X(z = x −Vt), eq. (8.28) reduces to the pair of ODEs,
X
(z)=P (X, Y )=Y, Y
(z)=Q(X, Y )=−VY+ X (X − A)(X −1).
Functional operators P and Q are formed to calculate the rhs of these ODEs.
>
P:=(X,Y)->Y; Q:=(X,Y)->-V*Y+X*(X-A)*(X-1);
P := (X, Y ) → YQ:= (X, Y ) →−VY+ X (X −A)(X −1)
The derivatives a=
∂P
∂X
, b=
∂P
∂Y
, c=
∂Q
∂X
,andd=
∂Q
∂Y
are carried out.
>
a:=diff(P(X,Y),X); b:=diff(P(X,Y),Y); c:=diff(Q(X,Y),X);
d:=diff(Q(X,Y),Y);
Setting P (X, Y )=0 and Q(X, Y )=0 and solving for X and Y , yields
>
sol:=solve({P(X,Y)=0,Q(X,Y)=0},{X,Y});
sol := {Y =0,X=0}, {Y =0,X=
1
4
}, {Y =0,X=1}
three stationary points at (X =0, Y = 0), (1/4, 0) and (1, 0). Operators for
calculating p= −(a+d)andq =ad−bc for the ith stationary point are created.
>
p:=i->evalf(eval(-(a+d),sol[i])):
q:=i->evalf(eval(a*d-b*c,sol[i])):
For each stationary point, the following do loop evaluates p, q,andr = p
2
−
4 q, and, based on the values of these quantities, identifies the nature of the
stationary point.
5
J.P. Ogilvie, Nonlocal Solitons in Photorefractive Materials, M. Sc. thesis, Simon Fraser
University, 1996.