Processing math: 100%

Algorithms

  • F. Durastante

We describe here the main algorithms implemented for the solution of y=f(A)x,ARn×n,nnz(A)=O(n),f:RR, and point to the relevant modules and subroutines in the library.

Krylov Methods

Let Vk be an orthogonal matrix whose columns x1,,xk span an arbitrary Krylov subspace Wk(A,x) of dimension k. We obtain an approximation of f(A)x by f(A)x=Vkf(VTkAVk)VTkx.

Different methods for the approximation of matrix functions are obtained for different choices of the projection spaces Wk(A,x).

Given a set of scalars {σ1,,σk1}¯C in the the extended complex plane ¯C, that are not eigenvalues of A, let qk1(z)=k1j=1(σjz). The rational Krylov subspace of order k associated with A, x and qk1 is defined by Qk(A,x)=[qk1(A)]1Kk(A,x), where Kk(A,x)=Span{x,Ax,,Ak1x} is the standard polynomial Krylov space.

By defining the matrices Cj=(μjσjAI)(σjIA)1, where {μ1,,μk1}¯C are such that σjμ2j, it is known that the rational Krylov space can also be written as follows [1] Qk(A,x)=Span{x,C1x,,Ck1C2C1x}. This general formulation allows to recast most of the classical Krylov methods in terms of a rational Krylov method with a specific choice of σj and μj. In particular,

  • the polynomial Krylov method in which Wk(A,x)=Kk(A,x) can be recovered by defining μj=1 and σj= for each j.
  • The extended Krylov method [2][3], in which W2k1(A,x)=Span{x,A1x,Ax,,A(k1)x,Ak1x}, is obtained by setting (μj,σj)={(1,),for j even,(0,0),for j odd.

  • The shift-and-invert rational Krylov [4][5], where Wk(A,x)=Span{x,(σIA)1x,,(σIA)(k1)x}, is defined by taking μj=0 and σj=σ for each j.

The PSFUN library contains the implementation of several flavour of these methods that can be used for the computation of (2), the field in the psfun_d_krylov type represent the options neeeded to for setting up and applying the different implemented method for a given matrix function fun (represented by an object of type psfun_d_serial).

The following table has the info on the available methods.

Method Class Matrix type "kname" Source
Arnoldi Polynomial General "ARNOLDI" [6]
Lanczos Polynomial Symmetric "LANCZOS" [6]

Quadrature Methods

This module makes use of the matrix function definition based on the Cauchy integral: given a closed contour Γ lying in the region of analyticity of the function f(x) and containing the spectrum of A, f(A) can be defined as f(A)=12πiΓf(z)(zIA)1dz. By applying a quadrature formula on N points to (3), with weights {cj}Nj=1 and nodes {ξj}Nj=1, it is possible to approximate (1) as y=f(A)xNj=1cj(A+ξjI)1x, that is then computationally equivalent to the solution of N linear systems with the same right-hand side.

The construction of the quadrature module is made of several interconnected modules. The base module is the psfun_base_quadrature_mod, it contains the base module of which the different quadratures are extensions.

Then the functions for working with the quadrature formula having either real (psb_dpk_) or complex quadrature nodes and weights for (4) are contained in the relative modules

These two modules make use of abstract interface for both the dquadrule/zquadrule and the generic function for which we compute the f(A). This is implemented this way to permit the user to implement its own quadrature rule and functions. An example of how this can be achieved is contained in the functions included in the submodules of psfun_z_quadrature_mod that implements the three routines from 7.

References

[1] Güttel, Stefan. Rational Krylov approximation of matrix functions: numerical methods and optimal pole selection. GAMM-Mitt. 36 (2013), no. 1, 8--31.

[2] Druskin, Vladimir; Knizhnerman, Leonid. Extended Krylov subspaces: approximation of the matrix square root and related functions. SIAM J. Matrix Anal. Appl. 19 (1998), no. 3, 755--771.

[3] Knizhnerman, L.; Simoncini, V. A new investigation of the extended Krylov subspace method for matrix function evaluations. Numer. Linear Algebra Appl. 17 (2010), no. 4, 615--638.

[4] Moret, I.; Novati, P. RD-rational approximations of the matrix exponential. BIT 44 (2004), no. 3, 595--615.

[5] van den Eshof, Jasper; Hochbruck, Marlis. Preconditioning Lanczos approximations to the matrix exponential. SIAM J. Sci. Comput. 27 (2006), no. 4, 1438--1457.

[6] Saad, Y. Analysis of some Krylov subspace approximations to the matrix exponential operator. SIAM J. Numer. Anal. 29 (1992), no. 1, 209--228.

[7] Hale, Nicholas; Higham, Nicholas J.; Trefethen, Lloyd N. Computing Aα, log(A), and related matrix functions by contour integrals. SIAM J. Numer. Anal. 46 (2008), no. 5, 2505--2523.