D02KEF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D02KEF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

D02KEF finds a specified eigenvalue of a regular or singular second-order Sturm–Liouville system on a finite or infinite interval, using a Pruefer transformation and a shooting method. It also reports values of the eigenfunction and its derivatives. Provision is made for discontinuities in the coefficient functions or their derivatives.

2  Specification

SUBROUTINE D02KEF ( XPOINT, M, MATCH, COEFFN, BDYVAL, K, TOL, ELAM, DELAM, HMAX, MAXIT, MAXFUN, MONIT, REPORT, IFAIL)
INTEGER  M, MATCH, K, MAXIT, MAXFUN, IFAIL
REAL (KIND=nag_wp)  XPOINT(M), TOL, ELAM, DELAM, HMAX(2,M)
EXTERNAL  COEFFN, BDYVAL, MONIT, REPORT

3  Description

D02KEF has essentially the same purpose as D02KDF with minor modifications to enable values of the eigenfunction to be obtained after convergence to the eigenvalue has been achieved.
It first finds a specified eigenvalue λ~ of a Sturm–Liouville system defined by a self-adjoint differential equation of the second-order
px y + q x;λ y=0 ,   a<x<b ,
together with appropriate boundary conditions at the two, finite or infinite, end points a and b. The functions p and q, which are real-valued, are defined by COEFFN. The boundary conditions must be defined by BDYVAL, and, in the case of a singularity at a or b, take the form of an asymptotic formula for the solution near the relevant end point.
When the final estimate λ=λ~ of the eigenvalue has been found, the routine integrates the differential equation once more with that value of λ, and with initial conditions chosen so that the integral
S=aby x 2 q λ x;λdx
is approximately one. When qx;λ is of the form λwx+qx, which is the most common case, S represents the square of the norm of y induced by the inner product
f,g = ab fx gx wx dx ,
with respect to which the eigenfunctions are mutually orthogonal. This normalization of y is only approximate, but experience shows that S generally differs from unity by only one or two per cent.
During this final integration the REPORT is called at each integration mesh point x. Sufficient information is returned to permit you to compute yx and yx for printing or plotting. For reasons described in Section 8.2, D02KEF passes across to REPORT, not y and y, but the Pruefer variables β, ϕ and ρ on which the numerical method is based. Their relationship to y and y is given by the equations
px y = β expρ2 cosϕ2 ,   y=1β expρ2 sinϕ2 .
A specimen REPORT is given in Section 9 below.
For the theoretical basis of the numerical method to be valid, the following conditions should hold on the coefficient functions:
(a) px must be nonzero and must not change sign throughout the interval a,b; and,
(b) q λ  must not change sign throughout the interval a,b for all relevant values of λ, and must not be identically zero as x varies, for any λ.
Points of discontinuity in the functions p and q or their derivatives are allowed, and should be included as ‘break points’ in the array XPOINT.
A good account of the theory of Sturm–Liouville systems, with some description of Pruefer transformations, is given in Chapter X of Birkhoff and Rota (1962). An introduction to the use of Pruefer transformations for the numerical solution of eigenvalue problems arising from physics and chemistry is given in Bailey (1966).
The scaled Pruefer method is described in a short note by Pryce and Hargrave (1977) and in some detail in the technical report by Pryce (1981).

4  References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Bailey P B (1966) Sturm–Liouville eigenvalues via a phase function SIAM J. Appl. Math. 14 242–249
Banks D O and Kurowski I (1968) Computation of eigenvalues of singular Sturm–Liouville Systems Math. Comput. 22 304–310
Birkhoff G and Rota G C (1962) Ordinary Differential Equations Ginn & Co., Boston and New York
Pryce J D (1981) Two codes for Sturm–Liouville problems Technical Report CS-81-01 Department of Computer Science, Bristol University
Pryce J D and Hargrave B A (1977) The scaled Prüfer method for one-parameter and multi-parameter eigenvalue problems in ODEs IMA Numerical Analysis Newsletter 1(3)

5  Parameters

1:     XPOINT(M) – REAL (KIND=nag_wp) arrayInput
On entry: the points where the boundary conditions computed by BDYVAL are to be imposed, and also any break points, i.e., XPOINT1 to XPOINTm must contain values x1,,xm such that
x1x2<x3<<xm-1xm
with the following meanings:
(a) x1 and xm are the left- and right-hand end points, a and b, of the domain of definition of the Sturm–Liouville system if these are finite. If either a or b is infinite, the corresponding value x1 or xm may be a more-or-less arbitrarily ‘large’ number of appropriate sign.
(b) x2 and xm-1 are the Boundary Matching Points (BMPs), that is the points at which the left and right boundary conditions computed in BDYVAL are imposed.
If the left-hand end point is a regular point then you should set x2=x1 =a, while if it is a singular point you must set x2>x1. Similarly xm-1=xm (=b) if the right-hand end point is regular, and xm-1<xm if it is singular.
(c) The remaining m-4 points x3,,xm-2, if any, define ‘break points’ which divide the interval x2,xm-1 into m-3 sub-intervals
i1=x2,x3,,im-3=xm-2,xm-1.
Numerical integration of the differential equation is stopped and restarted at each break point. In simple cases no break points are needed. However, if px or qx;λ are given by different formulae in different parts of the interval, then integration is more efficient if the range is broken up by break points in the appropriate way. Similarly points where any jumps occur in px or qx;λ, or in their derivatives up to the fifth-order, should appear as break points.
Examples are given in Sections 8 and 9. XPOINT determines the position of the Shooting Matching Point (SMP), as explained in Section 8.3.
Constraint: XPOINT1XPOINT2<<XPOINTM-1XPOINTM.
2:     M – INTEGERInput
On entry: the number of points in the array XPOINT.
Constraint: M4.
3:     MATCH – INTEGERInput/Output
On entry: must be set to the index of the ‘break point’ to be used as the matching point (see Section 8.3). If MATCH is set to a value outside the range 2,m-1 then a default value is taken, corresponding to the break point nearest the centre of the interval XPOINT2,XPOINTm-1.
On exit: the index of the break point actually used as the matching point.
4:     COEFFN – SUBROUTINE, supplied by the user.External Procedure
COEFFN must compute the values of the coefficient functions px and qx;λ for given values of x and λ. Section 3 states the conditions which p and q must satisfy. See Sections 8.4 and 9 for examples.
The specification of COEFFN is:
SUBROUTINE COEFFN ( P, Q, DQDL, X, ELAM, JINT)
INTEGER  JINT
REAL (KIND=nag_wp)  P, Q, DQDL, X, ELAM
1:     P – REAL (KIND=nag_wp)Output
On exit: the value of px for the current value of x.
2:     Q – REAL (KIND=nag_wp)Output
On exit: the value of qx;λ for the current value of x and the current trial value of λ.
3:     DQDL – REAL (KIND=nag_wp)Output
On exit: the value of q λ x;λ  for the current value of x and the current trial value of λ. However DQDL is only used in error estimation and, in the rare cases where it may be difficult to evaluate, an approximation (say to within 20%) will suffice.
4:     X – REAL (KIND=nag_wp)Input
On entry: the current value of x.
5:     ELAM – REAL (KIND=nag_wp)Input
On entry: the current trial value of the eigenvalue parameter λ.
6:     JINT – INTEGERInput
On entry: the index j of the sub-interval ij (see specification of XPOINT) in which x lies.
COEFFN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02KEF is called. Parameters denoted as Input must not be changed by this procedure.
5:     BDYVAL – SUBROUTINE, supplied by the user.External Procedure
BDYVAL must define the boundary conditions. For each end point, BDYVAL must return (in YL or YR) values of yx and pxyx which are consistent with the boundary conditions at the end points; only the ratio of the values matters. Here x is a given point (XL or XR) equal to, or close to, the end point.
For a regular end point (a, say), x=a, a boundary condition of the form
c1ya+c2ya=0
can be handled by returning constant values in YL, e.g., YL1=c2 and YL2=-c1pa.
For a singular end point however, YL1 and YL2 will in general be functions of XL and ELAM, and YR1 and YR2 functions of XR and ELAM, usually derived analytically from a power-series or asymptotic expansion. Examples are given in Sections 8.5 and 9.
The specification of BDYVAL is:
SUBROUTINE BDYVAL ( XL, XR, ELAM, YL, YR)
REAL (KIND=nag_wp)  XL, XR, ELAM, YL(3), YR(3)
1:     XL – REAL (KIND=nag_wp)Input
On entry: if a is a regular end point of the system (so that a=x1=x2), then XL contains a. If a is a singular point (so that ax1<x2), then XL contains a point x such that x1<xx2.
2:     XR – REAL (KIND=nag_wp)Input
On entry: if b is a regular end point of the system (so that xm-1=xm=b), then XR contains b. If b is a singular point (so that xm-1<xmb), then XR contains a point x such that xm-1x<xm.
3:     ELAM – REAL (KIND=nag_wp)Input
On entry: the current trial value of λ.
4:     YL(3) – REAL (KIND=nag_wp) arrayOutput
On exit: YL1 and YL2 should contain values of yx and pxyx respectively (not both zero) which are consistent with the boundary condition at the left-hand end point, given by x=XL. YL3 should not be set.
5:     YR(3) – REAL (KIND=nag_wp) arrayOutput
On exit: YR1 and YR2 should contain values of yx and pxyx respectively (not both zero) which are consistent with the boundary condition at the right-hand end point, given by x=XR. YR3 should not be set.
BDYVAL must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02KEF is called. Parameters denoted as Input must not be changed by this procedure.
6:     K – INTEGERInput
On entry: k, the index of the required eigenvalue when the eigenvalues are ordered
λ0 < λ1 < λ2 < < λk < .
Constraint: K0.
7:     TOL – REAL (KIND=nag_wp)Input
On entry: the tolerance parameter which determines the accuracy of the computed eigenvalue. The error estimate held in DELAM on exit satisfies the mixed absolute/relative error test
DELAMTOL×max1.0,ELAM, (1)
where ELAM is the final estimate of the eigenvalue. DELAM is usually somewhat smaller than the right-hand side of (1) but not several orders of magnitude smaller.
Constraint: TOL>0.0.
8:     ELAM – REAL (KIND=nag_wp)Input/Output
On entry: an initial estimate of the eigenvalue λ~.
On exit: the final computed estimate, whether or not an error occurred.
9:     DELAM – REAL (KIND=nag_wp)Input/Output
On entry: an indication of the scale of the problem in the λ-direction. DELAM holds the initial ‘search step’ (positive or negative). Its value is not critical, but the first two trial evaluations are made at ELAM and ELAM+DELAM, so the routine will work most efficiently if the eigenvalue lies between these values. A reasonable choice (if a closer bound is not known) is half the distance between adjacent eigenvalues in the neighbourhood of the one sought. In practice, there will often be a problem, similar to the one in hand but with known eigenvalues, which will help one to choose initial values for ELAM and DELAM.
If DELAM=0.0 on entry, it is given the default value of 0.25×max1.0,ELAM.
On exit: if IFAIL=0, DELAM holds an estimate of the absolute error in the computed eigenvalue, that is λ~-ELAMDELAM. (In Section 8.2 we discuss the assumptions under which this is true.) The true error is rarely more than twice, or less than a tenth, of the estimated error.
If IFAIL0, DELAM may hold an estimate of the error, or its initial value, depending on the value of IFAIL. See Section 6 for further details.
10:   HMAX(2,M) – REAL (KIND=nag_wp) arrayInput/Output
On entry: HMAX1j should contain a maximum step size to be used by the differential equation code in the jth sub-interval ij (as described in the specification of parameter XPOINT), for j=1,2,,m-3. If it is zero the routine generates a maximum step size internally.
It is recommended that HMAX1j be set to zero unless the coefficient functions p and q have features (such as a narrow peak) within the jth sub-interval that could be ‘missed’ if a long step were taken. In such a case HMAX1j should be set to about half the distance over which the feature should be observed. Too small a value will increase the computing time for the routine. See Section 8 for further suggestions.
The rest of the array is used as workspace.
On exit: HMAX1m-1 and HMAX1m contain the sensitivity coefficients σl,σr, described in Section 8.6. Other entries contain diagnostic output in the case of an error exit (see Section 6).
11:   MAXIT – INTEGERInput/Output
On entry: a bound on nr, the number of root-finding iterations allowed, that is the number of trial values of λ that are used. If MAXIT0, no such bound is assumed. (See also MAXFUN.)
Suggested value: MAXIT=0.
On exit: will have been decreased by the number of iterations actually performed, whether or not it was positive on entry.
12:   MAXFUN – INTEGERInput
On entry: a bound on nf, the number of calls to COEFFN made in any one root-finding iteration. If MAXFUN0, no such bound is assumed.
Suggested value: MAXFUN=0.
MAXFUN and MAXIT may be used to limit the computational cost of a call to D02KEF, which is roughly proportional to nr×nf.
13:   MONIT – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
MONIT is called by D02KEF at the end of each root-finding iteration and allows you to monitor the course of the computation by printing out the parameters (see Section 9 for an example).
If no monitoring is required, the dummy (sub)program D02KAY may be used. (D02KAY is included in the NAG Library.)
The specification of MONIT is:
SUBROUTINE MONIT ( NIT, IFLAG, ELAM, FINFO)
INTEGER  NIT, IFLAG
REAL (KIND=nag_wp)  ELAM, FINFO(15)
1:     NIT – INTEGERInput
On entry: the current value of the parameter MAXIT of D02KEF, this is decreased by one at each iteration.
2:     IFLAG – INTEGERInput
On entry: describes what phase the computation is in.
IFLAG<0
An error occurred in the computation at this iteration; an error exit from D02KEF with IFAIL=-IFLAG will follow.
IFLAG=1
The routine is trying to bracket the eigenvalue λ~.
IFLAG=2
The routine is converging to the eigenvalue λ~ (having already bracketed it).
3:     ELAM – REAL (KIND=nag_wp)Input
On entry: the current trial value of λ.
4:     FINFO(15) – REAL (KIND=nag_wp) arrayInput
On entry: information about the behaviour of the shooting method, and diagnostic information in the case of errors. It should not normally be printed in full if no error has occurred (that is, if IFLAG>0), though the first few components may be of interest to you. In case of an error (IFLAG<0) all the components of FINFO should be printed.
The contents of FINFO are as follows:
FINFO1
The current value of the ‘miss-distance’ or ‘residual’ function fλ on which the shooting method is based. (See Section 8.2 for further information.) FINFO1 is set to zero if IFLAG<0.
FINFO2
An estimate of the quantity λ defined as follows. Consider the perturbation in the miss-distance fλ that would result if the local error in the solution of the differential equation were always positive and equal to its maximum permitted value. Then λ is the perturbation in λ that would have the same effect on fλ. Thus, at the zero of fλ,λ is an approximate bound on the perturbation of the zero (that is the eigenvalue) caused by errors in numerical solution. If λ is very large then it is possible that there has been a programming error in COEFFN such that q is independent of λ. If this is the case, an error exit with IFAIL=5 should follow. FINFO2 is set to zero if IFLAG<0.
FINFO3
The number of internal iterations, using the same value of λ and tighter accuracy tolerances, needed to bring the accuracy (that is, the value of λ) to an acceptable value. Its value should normally be 1.0, and should almost never exceed 2.0.
FINFO4
The number of calls to COEFFN at this iteration.
FINFO5
The number of successful steps taken by the internal differential equation solver at this iteration. A step is successful if it is used to advance the integration.
FINFO6
The number of unsuccessful steps used by the internal integrator at this iteration.
FINFO7
The number of successful steps at the maximum step size taken by the internal integrator at this iteration.
FINFO8
Not used.
FINFO9 to FINFO15
Set to zero, unless IFLAG<0 in which case they hold the following values describing the point of failure:
FINFO9
The index of the sub-interval where failure occurred, in the range 1 to m-3. In case of an error in BDYVAL, it is set to 0 or m-2 depending on whether the left or right boundary condition caused the error.
FINFO10
The value of the independent variable, x, the point at which the error occurred. In case of an error in BDYVAL, it is set to the value of XL or XR as appropriate (see the specification of BDYVAL).
FINFO11, FINFO12, FINFO13
The current values of the Pruefer dependent variables β, ϕ and ρ respectively. These are set to zero in case of an error in BDYVAL.
FINFO14
The local-error tolerance being used by the internal integrator at the point of failure. This is set to zero in the case of an error in BDYVAL.
FINFO15
The last integration mesh point. This is set to zero in the case of an error in BDYVAL.
MONIT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02KEF is called. Parameters denoted as Input must not be changed by this procedure.
14:   REPORT – SUBROUTINE, supplied by the user.External Procedure
REPORT provides the means by which you may compute the eigenfunction yx and its derivative at each integration mesh point x. (See Section 8 for an example.)
The specification of REPORT is:
SUBROUTINE REPORT ( X, V, JINT)
INTEGER  JINT
REAL (KIND=nag_wp)  X, V(3)
1:     X – REAL (KIND=nag_wp)Input
On entry: the current value of the independent variable x. See Section 8.3 for the order in which values of x are supplied.
2:     V(3) – REAL (KIND=nag_wp) arrayInput
On entry: V1, V2, V3 hold the current values of the Pruefer variables β, ϕ, ρ respectively.
3:     JINT – INTEGERInput
On entry: indicates the sub-interval between break points in which X lies exactly as for COEFFN, except that at the extreme left-hand end point (when x=XPOINT2) JINT is set to 0 and at the extreme right-hand end point (when x=xr=XPOINTm-1) JINT is set to m-2.
REPORT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02KEF is called. Parameters denoted as Input must not be changed by this procedure.
15:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
A parameter error. All parameters (except IFAIL) are left unchanged. The reason for the error is shown by the value of HMAX21 as follows:
HMAX21=1: M<4;
HMAX21=2: K<0;
HMAX21=3: TOL0.0;
HMAX21=4: XPOINT1 to XPOINTm are not in ascending order. HMAX22 gives the position i in XPOINT where this was detected.
IFAIL=2
At some call to BDYVAL, invalid values were returned, that is, either YL1=YL2=0.0, or YR1=YR2=0.0 (a programming error in BDYVAL). See the last call of MONIT for details.
This error exit will also occur if px is zero at the point where the boundary condition is imposed. Probably BDYVAL was called with XL equal to a singular end point a or with XR equal to a singular end point b.
IFAIL=3
At some point between XL and XR the value of px computed by COEFFN became zero or changed sign. See the last call of MONIT for details.
IFAIL=4
MAXIT>0 on entry, and after MAXIT iterations the eigenvalue had not been found to the required accuracy.
IFAIL=5
The ‘bracketing’ phase (with parameter IFLAG of the MONIT equal to 1) failed to bracket the eigenvalue within ten iterations. This is caused by an error in formulating the problem (for example, q is independent of λ), or by very poor initial estimates of ELAM and DELAM.
On exit, ELAM and ELAM+DELAM give the end points of the interval within which no eigenvalue was located by the routine.
IFAIL=6
MAXFUN>0 on entry, and the last iteration was terminated because more than MAXFUN calls to COEFFN were used. See the last call of MONIT for details.
IFAIL=7
To obtain the desired accuracy the local error tolerance was set so small at the start of some sub-interval that the differential equation solver could not choose an initial step size large enough to make significant progress. See the last call of MONIT for diagnostics.
IFAIL=8
At some point inside a sub-interval the step size in the differential equation solver was reduced to a value too small to make significant progress (for the same reasons as with IFAIL=7). This could be due to pathological behaviour of px and qx;λ or to an unreasonable accuracy requirement or to the current value of λ making the equations ‘stiff’. See the last call of MONIT for details.
IFAIL=9
TOL is too small for the problem being solved and the machine precision is being used. The final value of ELAM should be a very good approximation to the eigenvalue.
IFAIL=10
C05AZF, called by D02KEF, has terminated with the error exit corresponding to a pole of the residual function fλ. This error exit should not occur, but if it does, try solving the problem again with a smaller value for TOL.
IFAIL=11
IFAIL=12
A serious error has occurred in an internal call. Check all (sub)program calls and array dimensions. Seek expert help.
Note: error exits with IFAIL=2, 3, 6, 7, 8 or 11 are caused by being unable to set up or solve the differential equation at some iteration and will be immediately preceded by a call of MONIT giving diagnostic information. For other errors, diagnostic information is contained in HMAX2j, for j=1,2,,m, where appropriate.

7  Accuracy

See the discussion in Section 8.2.

8  Further Comments

8.1  Timing

The time taken by D02KEF depends on the complexity of the coefficient functions, whether they or their derivatives are rapidly changing, the tolerance demanded, and how many iterations are needed to obtain convergence. The amount of work per iteration is roughly doubled when TOL is divided by 16. To make the most economical use of the routine, one should try to obtain good initial values for ELAM and DELAM, and, where appropriate, good asymptotic formulae. Also the boundary matching points should not be set unnecessarily close to singular points. The extra time needed to compute the eigenfunction is principally the cost of one additional integration once the eigenvalue has been found.

8.2  General Description of the Algorithm

A shooting method, for differential equation problems containing unknown parameters, relies on the construction of a ‘miss-distance function’, which for given trial values of the parameters measures how far the conditions of the problem are from being met. The problem is then reduced to one of finding the values of the parameters for which the miss-distance function is zero, that is to a root-finding process. Shooting methods differ mainly in how the miss-distance is defined.
D02KEF defines a miss-distance fλ based on the rotation about the origin of the point Px=pxyx,yx in the Phase Plane as the solution proceeds from a to b. The boundary conditions define the ray (i.e., two-sided line through the origin) on which px should start, and the ray on which it should finish. The eigenvalue k defines the total number of half-turns it should make. Numerical solution is actually done by ‘shooting forward’ from x=a and ‘shooting backward’ from x=b to a matching point x=c. Then fλ is taken as the angle between the rays to the two resulting points Pac and Pbc. A relative scaling of the py and y axes, based on the behaviour of the coefficient functions p and q, is used to improve the numerical behaviour.
Figure 1
Figure 1
The resulting function fλ is monotonic over -<λ<, increasing if q λ >0 and decreasing if q λ <0, with a unique zero at the desired eigenvalue λ~. The routine measures fλ in units of a half-turn. This means that as λ increases, fλ varies by about 1 as each eigenvalue is passed. (This feature implies that the values of fλ at successive iterations – especially in the early stages of the iterative process – can be used with suitable extrapolation or interpolation to help the choice of initial estimates for eigenvalues near to the one currently being found.)
The routine actually computes a value for fλ with errors, arising from the local errors of the differential equation code and from the asymptotic formulae provided by you if singular points are involved. However, the error estimate output in DELAM is usually fairly realistic, in that the actual error λ~-ELAM is within an order of magnitude of DELAM.
We pass the values of β, ϕ, ρ across through REPORT rather than converting them to values of y, y inside D02KEF, for the following reasons. First, there may be cases where auxiliary quantities can be more accurately computed from the Pruefer variables than from y and y. Second, in singular problems on an infinite interval y and y may underflow towards the end of the range, whereas the Pruefer variables remain well-behaved. Third, with high-order eigenvalues (and therefore highly oscillatory eigenfunctions) the eigenfunction may have a complete oscillation (or more than one oscillation) between two mesh points, so that values of y and y at mesh points give a very poor representation of the curve. The probable behaviour of the Pruefer variables in this case is that β and ρ vary slowly whilst ϕ increases quickly: for all three Pruefer variables linear interpolation between the values at adjacent mesh points is probably sufficiently accurate to yield acceptable intermediate values of β, ϕ, ρ (and hence of y,y) for graphical purposes.
Similar considerations apply to the exponentially decaying ‘tails’ of the eigenfunctions that often occur in singular problems. Here ϕ has approximately constant value whilst ρ increases rapidly in the direction of integration, though the step length is generally fairly small over such a range.
If the solution is output through REPORT at x values which are too widely spaced, the step length can be controlled by choosing HMAX suitably, or, preferably, by reducing TOL. Both these choices will lead to more accurate eigenvalues and eigenfunctions but at some computational cost.

8.3  The Position of the Shooting Matching Point c

This point is always one of the values xi in array XPOINT. It may be specified using the parameter MATCH. The default value is chosen to be the value of that xi, 2im-1, that lies closest to the middle of the interval x2,xm-1. If there is a tie, the rightmost candidate is chosen. In particular if there are no break points, then c=xm-1 (=x3); that is, the shooting is from left to right in this case. A break point may be inserted purely to move c to an interior point of the interval, even though the form of the equations does not require it. This often speeds up convergence especially with singular problems.
Note that the shooting method used by the code integrates first from the left-hand end xl, then from the right-hand end xr, to meet at the matching point c in the middle. This will of course be reflected in printed or graphical output. The diagram shows a possible sequence of nine mesh points τ1 through τ9 in the order in which they appear, assuming there are just two sub-intervals (so m=5).
Figure 2
Figure 2
Since the shooting method usually fails to match up the two ‘legs’ of the curve exactly, there is bound to be a jump in y, or in pxy or both, at the matching point c. The code in fact ‘shares’ the discrepancy out so that both y and pxy have a jump. A large jump does not imply an inaccurate eigenvalue, but implies either
(a) a badly chosen matching point: if qx;λ has a ‘humped’ shape, c should be chosen near the maximum value of q, especially if q is negative at the ends of the interval;
(b) an inherently ill-conditioned problem, typically one where another eigenvalue is pathologically close to the one being sought. In this case it is extremely difficult to obtain an accurate eigenfunction.
In Section 9, we find the 11th eigenvalue and corresponding eigenfunction of the equation
y+λ-x-2/x2y=0  on  0<x<,
the boundary conditions being that y should remain bounded as x tends to 0 and x tends to . The coding of this problem is discussed in detail in Section 8.5.
The choice of matching point c is open. If we choose c=30.0 as in D02KDF example program we find that the exponentially increasing component of the solution dominates and we get extremely inaccurate values for the eigenfunction (though the eigenvalue is determined accurately). The values of the eigenfunction calculated with c=30.0 are given schematically in Figure 3.
Figure 3
Figure 3
If we choose c as the maximum of the hump in qx;λ (see item (a) above) we instead obtain the accurate results given in Figure 4
Figure 4
Figure 4

8.4  Examples of Coding the COEFFN

Coding COEFFN is straightforward except when break points are needed. The examples below show:
(a) a simple case,
(b) a case in which discontinuities in the coefficient functions or their derivatives necessitate break points, and
(c) a case where break points together with the HMAX parameter are an efficient way to deal with a coefficient function that is well-behaved except over one short interval.
(Some of these cases are among the examples in Section 9.)
Example A
The modified Bessel equation
x xy + λx2-ν2 y=0 .
Assuming the interval of solution does not contain the origin and dividing through by x, we have px=x and qx;λ=λx-ν2/x. The code could be
SUBROUTINE COEFFN (P,Q,DQDL,X,ELAM,JINT)
...
P = X
Q = ELAM*X - NU*NU/X
DQDL = X
RETURN
END
where NU (standing for ν) is a real variable that might be defined in a DATA statement, or might be in user-declared COMMON so that its value could be set in the main program.
Example B
The Schroedinger equation
y+λ+qxy=0,
where
qx = x2- 10 x 4, 6x x> 4,
over some interval ‘approximating to -,’, say -20,20. Here we need break points at ±4, forming three sub-intervals i1=-20,-4, i2=-4,4, i3=4,20. The code could be
SUBROUTINE COEFFN(P,Q,DQDL,X,ELAM,JINT)
...
IF (JINT.EQ.2) THEN
  Q = ELAM + X*X - 10.0E0
ELSE
  Q = ELAM + 6.0E0/ABS(X)
ENDIF
P = 1.0E0
DQDL = 1.0E0
RETURN
END
The array XPOINT would contain the values x1, -20.0, -4.0, +4.0, +20.0, x6 and m would be 6. The choice of appropriate values for x1 and x6 depends on the form of the asymptotic formula computed by BDYVAL and the technique is discussed in Section 8.5.
Example C
y+λ1-2e-100x2y=0,  -10x10.
Here qx;λ is nearly constant over the range except for a sharp inverted spike over approximately -0.1x0.1. There is a danger that the routine will build up to a large step size and ‘step over’ the spike without noticing it. By using break points – say at ±0.5 – one can restrict the step size near the spike without impairing the efficiency elsewhere.
The code for COEFFN could be
SUBROUTINE COEFFN(P,Q,DQDL,X,ELAM,JINT)
...
P = 1.0E0
DQDL = 1.0E0 - 2.0E0*EXP(-100.0E0*X*X)
Q = ELAM*DQDL
RETURN
END
XPOINT might contain -10.0, -10.0, -0.5, 0.5, 10.0, 10.0 (assuming ±10 are regular points) and m would be 6. HMAX1j, for j=1,2,3, might contain 0.0, 0.1 and 0.0.

8.5  Examples of Boundary Conditions at Singular Points

Quoting from page 243 of Bailey (1966): ‘Usually ... the differential equation has two essentially different types of solution near a singular point, and the boundary condition there merely serves to distinguish one kind from the other. This is the case in all the standard examples of mathematical physics.’
In most cases the behaviour of the ratio pxy/y near the point is quite different for the two types of solution. Essentially what you provide through the BDYVAL is an approximation to this ratio, valid as x tends to the singular point (SP).
You must decide (a) how accurate to make this approximation or asymptotic formula, for example how many terms of a series to use, and (b) where to place the boundary matching point (BMP) at which the numerical solution of the differential equation takes over from the asymptotic formula. Taking the BMP closer to the SP will generally improve the accuracy of the asymptotic formula, but will make the computation more expensive as the Pruefer differential equations generally become progressively more ill-behaved as the SP is approached. You are strongly recommended to experiment with placing the BMPs. In many singular problems quite crude asymptotic formulae will do. To help you avoid needlessly accurate formulae, D02KEF outputs two ‘sensitivity coefficients’ σl,σr which estimate how much the errors at the BMPs affect the computed eigenvalue. They are described in detail in Section 8.6.
Example of coding BDYVAL:
The example below illustrates typical situations:
y+λ-x-2x2 y=0,  0<x<
the boundary conditions being that y should remain bounded as x tends to 0 and x tends to .
At the end x=0 there is one solution that behaves like x2 and another that behaves like x-1. For the first of these solutions pxy/y is asymptotically 2/x while for the second it is asymptotically -1/x. Thus the desired ratio is specified by setting
YL1=x  and  YL2=2.0.
At the end x= the equation behaves like Airy's equation shifted through λ, i.e., like y-ty=0 where t=x-λ, so again there are two types of solution. The solution we require behaves as
exp-23t32/t4
and the other as
exp+23t32/t4.
Hence, the desired solution has pxy/y-t so that we could set YR1=1.0 and YR2=-x-λ. The complete subroutine might thus be
SUBROUTINE BDYVAL (XL,XR,ELAM,YL,YR)
real XL, XR, ELAM, YL(3), YR(3)
YL(1) = XL
YL(2) = 2.0E0
YR(1) = 1.0E0
YR(2) = -SQRT(XR-ELAM)
RETURN
END
Clearly for this problem it is essential that any value given by D02KEF to XR is well to the right of the value of ELAM, so that you must vary the right-hand BMP with the eigenvalue index k. One would expect λk to be near the kth zero of the Airy function Aix, so there is no problem estimating ELAM.
More accurate asymptotic formulae are easily found: near x=0 by the standard Frobenius method, and near x= by using standard asymptotics for Aix, Aix, (see page 448 of Abramowitz and Stegun (1972)).
For example, by the Frobenius method the solution near x=0 has the expansion
y=x2c0+c1x+c2x2+
with
c0= 1,c1= 0, c2=-λ10, c3=118,, cn=cn- 3-λ cn- 2 nn+ 3 .
This yields
pxyy=2-25λx2+ x 1-λ10x2+ .

8.6  The Sensitivity Parameters σl and σr

The sensitivity parameters σl, σr (held in HMAX1m-1 and HMAX1m on output) estimate the effect of errors in the boundary conditions. For sufficiently small errors Δy, Δpy in y and py respectively, the relations
Δλy.Δpy-py.Δylσl Δλy.Δpy-py.Δyrσr
are satisfied, where the subscripts l, r denote errors committed at the left- and right-hand BMPs respectively, and Δλ denotes the consequent error in the computed eigenvalue.

8.7  ‘Missed Zeros’

This is a pitfall to beware of at a singular point. If the BMP is chosen so far from the SP that a zero of the desired eigenfunction lies in between them, then the routine will fail to ‘notice’ this zero. Since the index of k of an eigenvalue is the number of zeros of its eigenfunction, the result will be that
(a) the wrong eigenvalue will be computed for the given index k – in fact some λk+k will be found where k1;
(b) the same index k can cause convergence to any of several eigenvalues depending on the initial values of ELAM and DELAM.
It is up to you to take suitable precautions – for instance by varying the position of the BMPs in the light of knowledge of the asymptotic behaviour of the eigenfunction at different eigenvalues.

9  Example

This example finds the 11th eigenvalue and eigenfunction of the example of Section 8.5, using the simple asymptotic formulae for the boundary conditions.
Comparison of the results from this example program with the corresponding results from D02KDF example program shows that similar output is produced from MONIT, followed by the eigenfunction values from REPORT, and then a further line of information from MONIT (corresponding to the integration to find the eigenfunction). Final information is printed within the example program exactly as with D02KDF.
Note the discrepancy at the matching point c (=43, the maximum of qx;λ, in this case) between the solutions obtained by integrations from left- and right-hand end points.

9.1  Program Text

Program Text (d02kefe.f90)

9.2  Program Data

Program Data (d02kefe.d)

9.3  Program Results

Program Results (d02kefe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -10 -8 -6 -4 -2 0 2 4 6 8 10 0 5 10 15 20 25 30 Eigenfunction and Derivative x Example Program Regular Singular Second-order Sturm-Liouville System 11th Eigenfunction and Derivative p(x)y' y

D02KEF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012