NAG Library Routine Document

f01bvf  (real_symm_posdef_geneig)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

f01bvf transforms the generalized symmetric-definite eigenproblem Ax=λbx to the equivalent standard eigenproblem Cy=λy, where A, b and C are symmetric band matrices and b is positive definite. b must have been decomposed by f01buf.

2
Specification

Fortran Interface
Subroutine f01bvf ( n, ma1, mb1, m3, k, a, lda, b, ldb, v, ldv, w, ifail)
Integer, Intent (In):: n, ma1, mb1, m3, k, lda, ldb, ldv
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (Inout):: a(lda,n), b(ldb,n), v(ldv,m3)
Real (Kind=nag_wp), Intent (Out):: w(m3)
C Header Interface
#include nagmk26.h
void  f01bvf_ ( const Integer *n, const Integer *ma1, const Integer *mb1, const Integer *m3, const Integer *k, double a[], const Integer *lda, double b[], const Integer *ldb, double v[], const Integer *ldv, double w[], Integer *ifail)

3
Description

A is a symmetric band matrix of order n and bandwidth 2mA+1. The positive definite symmetric band matrix B, of order n and bandwidth 2mB+1, must have been previously decomposed by f01buf as ULDLTUT. f01bvf applies U, L and D to A, mA rows at a time, restoring the band form of A at each stage by plane rotations. The argument k defines the change-over point in the decomposition of B as used by f01buf and is also used as a change-over point in the transformations applied by this routine. For maximum efficiency, k should be chosen to be the multiple of mA nearest to n/2. The resulting symmetric band matrix C is overwritten on a. The eigenvalues of C, and thus of the original problem, may be found using f08hef (dsbtrd) and f08jff (dsterf). For selected eigenvalues, use f08hef (dsbtrd) and f08jjf (dstebz).

4
References

Crawford C R (1973) Reduction of a band-symmetric generalized eigenvalue problem Comm. ACM 16 41–44

5
Arguments

1:     n – IntegerInput
On entry: n, the order of the matrices A, B and C.
2:     ma1 – IntegerInput
On entry: mA+1, where mA is the number of nonzero superdiagonals in A. Normally ma1n.
3:     mb1 – IntegerInput
On entry: mB+1, where mB is the number of nonzero superdiagonals in B.
Constraint: mb1ma1.
4:     m3 – IntegerInput
On entry: the value of 3mA+mB.
5:     k – IntegerInput
On entry: k, the change-over point in the transformations. It must be the same as the value used by f01buf in the decomposition of B.
Suggested value: the optimum value is the multiple of mA nearest to n/2.
Constraint: mb1-1kn.
6:     aldan – Real (Kind=nag_wp) arrayInput/Output
On entry: the upper triangle of the n by n symmetric band matrix A, with the diagonal of the matrix stored in the mA+1th row of the array, and the mA superdiagonals within the band stored in the first mA rows of the array. Each column of the matrix is stored in the corresponding column of the array. For example, if n=6 and mA=2, the storage scheme is
* * a13 a24 a35 a46 * a12 a23 a34 a45 a56 a11 a22 a33 a44 a55 a66  
Elements in the top left corner of the array need not be set. The following code assigns the matrix elements within the band to the correct elements of the array:
    DO 20 J = 1, N
       DO 10 I = MAX(1,J-MA1+1), J
          A(I-J+MA1,J) = matrix (I,J)
 10    CONTINUE
 20 CONTINUE 
On exit: is overwritten by the corresponding elements of C.
7:     lda – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which f01bvf is called.
Constraint: ldama1.
8:     bldbn – Real (Kind=nag_wp) arrayInput/Output
On entry: the elements of the decomposition of matrix B as returned by f01buf.
On exit: the elements of b will have been permuted.
9:     ldb – IntegerInput
On entry: the first dimension of the array b as declared in the (sub)program from which f01bvf is called.
Constraint: ldbmb1.
10:   vldvm3 – Real (Kind=nag_wp) arrayWorkspace
11:   ldv – IntegerInput
On entry: the first dimension of the array v as declared in the (sub)program from which f01bvf is called.
Constraint: ldvmA+mB.
12:   wm3 – Real (Kind=nag_wp) arrayWorkspace
13:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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
On entry,mb1>ma1.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

In general the computed system is exactly congruent to a problem A+Ex=λB+Fx, where E and F are of the order of εκBA and εκBB respectively, where κB is the condition number of B with respect to inversion and ε is the machine precision. This means that when B is positive definite but not well-conditioned with respect to inversion, the method, which effectively involves the inversion of B, may lead to a severe loss of accuracy in well-conditioned eigenvalues.

8
Parallelism and Performance

f01bvf is not threaded in any implementation.

9
Further Comments

The time taken by f01bvf is approximately proportional to n2mB2 and the distance of k from n/2, e.g., k=n/4 and k=3n/4 take 502% longer.
When B is positive definite and well-conditioned with respect to inversion, the generalized symmetric eigenproblem can be reduced to the standard symmetric problem Py=λy where P=L-1AL-T and B=LLT, the Cholesky factorization.
When A and B are of band form, especially if the bandwidth is small compared with the order of the matrices, storage considerations may rule out the possibility of working with P since it will be a full matrix in general. However, for any factorization of the form B=SST, the generalized symmetric problem reduces to the standard form
S-1AS-TSTx=λSTx  
and there does exist a factorization such that S-1AS-T is still of band form (see Crawford (1973)). Writing
C=S-1AS-T  and  y=STx  
the standard form is Cy=λy and the bandwidth of C is the maximum bandwidth of A and B.
Each stage in the transformation consists of two phases. The first reduces a leading principal sub-matrix of B to the identity matrix and this introduces nonzero elements outside the band of A. In the second, further transformations are applied which leave the reduced part of B unaltered and drive the extra elements upwards and off the top left corner of A. Alternatively, B may be reduced to the identity matrix starting at the bottom right-hand corner and the extra elements introduced in A can be driven downwards.
The advantage of the ULDLTUT decomposition of B is that no extra elements have to be pushed over the whole length of A. If k is taken as approximately n/2, the shifting is limited to halfway. At each stage the size of the triangular bumps produced in A depends on the number of rows and columns of B which are eliminated in the first phase and on the bandwidth of B. The number of rows and columns over which these triangles are moved at each step in the second phase is equal to the bandwidth of A.
In this routine, a is defined as being at least as wide as B and must be filled out with zeros if necessary as it is overwritten with C. The number of rows and columns of B which are effectively eliminated at each stage is mA.

10
Example

This example finds the three smallest eigenvalues of Ax=λBx, where
A= 11 12 12 12 13 13 13 14 14 14 15 15 15 16 16 16 17 17 17 18 18 18 19 19 19  
B= 101 22 22 102 23 23 103 24 24 104 25 25 105 26 26 106 27 27 107 28 28 108 29 29 109 .  

10.1
Program Text

Program Text (f01bvfe.f90)

10.2
Program Data

Program Data (f01bvfe.d)

10.3
Program Results

Program Results (f01bvfe.r)

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