Hessenberg matrix

From HandWiki
Short description: Kind of square matrix in linear algebra

In linear algebra, a Hessenberg matrix is a special kind of square matrix, one that is "almost" triangular. To be exact, an upper Hessenberg matrix has zero entries below the first subdiagonal, and a lower Hessenberg matrix has zero entries above the first superdiagonal.[1] They are named after Karl Hessenberg.[2]

A Hessenberg decomposition is a matrix decomposition of a matrix A into a unitary matrix P and a Hessenberg matrix H such that PHP*=A where P* denotes the conjugate transpose.

Definitions

Upper Hessenberg matrix

A square n×n matrix A is said to be in upper Hessenberg form or to be an upper Hessenberg matrix if ai,j=0 for all i,j with i>j+1.

An upper Hessenberg matrix is called unreduced if all subdiagonal entries are nonzero, i.e. if ai+1,i0 for all i{1,,n1}.[3]

Lower Hessenberg matrix

A square n×n matrix A is said to be in lower Hessenberg form or to be a lower Hessenberg matrix if its transpose is an upper Hessenberg matrix or equivalently if ai,j=0 for all i,j with j>i+1.

A lower Hessenberg matrix is called unreduced if all superdiagonal entries are nonzero, i.e. if ai,i+10 for all i{1,,n1}.

Examples

Consider the following matrices. A=[1423341702340013] B=[1200523034375611] C=[1200520034375611]

The matrix A is an upper unreduced Hessenberg matrix, B is a lower unreduced Hessenberg matrix and C is a lower Hessenberg matrix but is not unreduced.

Computer programming

Many linear algebra algorithms require significantly less computational effort when applied to triangular matrices, and this improvement often carries over to Hessenberg matrices as well. If the constraints of a linear algebra problem do not allow a general matrix to be conveniently reduced to a triangular one, reduction to Hessenberg form is often the next best thing. In fact, reduction of any matrix to a Hessenberg form can be achieved in a finite number of steps (for example, through Householder's transformation of unitary similarity transforms). Subsequent reduction of Hessenberg matrix to a triangular matrix can be achieved through iterative procedures, such as shifted QR-factorization. In eigenvalue algorithms, the Hessenberg matrix can be further reduced to a triangular matrix through Shifted QR-factorization combined with deflation steps. Reducing a general matrix to a Hessenberg matrix and then reducing further to a triangular matrix, instead of directly reducing a general matrix to a triangular matrix, often economizes the arithmetic involved in the QR algorithm for eigenvalue problems.

Reduction to Hessenberg matrix

Householder transformations

Any n×n matrix can be transformed into a Hessenberg matrix by a similarity transformation using Householder transformations. The following procedure for such a transformation is adapted from A Second Course In Linear Algebra by Garcia & Roger.[4]

Let A be any real or complex n×n matrix, then let A be the (n1)×n submatrix of A constructed by removing the first row in A and let 𝐚1 be the first column of A. Construct the (n1)×(n1) householder matrix V1=I(n1)2ww*w2 where w={𝐚12𝐞1𝐚1,a11=0𝐚12𝐞1+a11|a11|𝐚1,a110

This householder matrix will map 𝐚1 to 𝐚1𝐞1 and as such, the block matrix U1=[1𝟎𝟎V1] will map the matrix A to the matrix U1A which has only zeros below the second entry of the first column. Now construct (n2)×(n2) householder matrix V2 in a similar manner as V1 such that V2 maps the first column of A to 𝐚1𝐞1, where A is the submatrix of A constructed by removing the first row and the first column of A, then let U2=[10001000V2] which maps U1A to the matrix U2U1A which has only zeros below the first and second entry of the subdiagonal. Now construct V3 and then U3 in a similar manner, but for the matrix A constructed by removing the first row and first column of A and proceed as in the previous steps. Continue like this for a total of n2 steps.

By construction of Uk, the first k columns of any n×n matrix are invariant under multiplication by Uk* from the right. Hence, any matrix can be transformed to an upper Hessenberg matrix by a similarity transformation of the form U(n2)((U2(U1AU1*)U2*))U(n2)*=U(n2)U2U1A(U(n2)U2U1)*=UAU*.

Jacobi (Givens) rotations

A Jacobi rotation (also called Givens rotation) is an orthogonal matrix transformation in the form

AA=J(p,q,θ)TAJ(p,q,θ),

where J(p,q,θ), p<q, is the Jacobi rotation matrix with all matrix elements equal zero except for

{J(p,q,θ)ii=1ip,qJ(p,q,θ)pp=cos(θ)J(p,q,θ)qq=cos(θ)J(p,q,θ)pq=sin(θ)J(p,q,θ)qp=sin(θ).

One can zero the matrix element A'p1,q by choosing the rotation angle θ to satisfy the equation

Ap1,psinθ+Ap1,qcosθ=0,

Now, the sequence of such Jacobi rotations with the following (p,q)

(p,q)=(2,3),(2,4),,(2,n),(3,4),,(3,n),,(n1,n)

reduces the matrix A to the lower Hessenberg form.[5]

Properties

For n{1,2}, it is vacuously true that every n×n matrix is both upper Hessenberg, and lower Hessenberg.[6]

The product of a Hessenberg matrix with a triangular matrix is again Hessenberg. More precisely, if A is upper Hessenberg and T is upper triangular, then AT and TA are upper Hessenberg.

A matrix that is both upper Hessenberg and lower Hessenberg is a tridiagonal matrix, of which the Jacobi matrix is an important example. This includes the symmetric or Hermitian Hessenberg matrices. A Hermitian matrix can be reduced to tri-diagonal real symmetric matrices.[7]

Hessenberg operator

The Hessenberg operator is an infinite dimensional Hessenberg matrix. It commonly occurs as the generalization of the Jacobi operator to a system of orthogonal polynomials for the space of square-integrable holomorphic functions over some domain—that is, a Bergman space. In this case, the Hessenberg operator is the right-shift operator S, given by [Sf](z)=zf(z).

The eigenvalues of each principal submatrix of the Hessenberg operator are given by the characteristic polynomial for that submatrix. These polynomials are called the Bergman polynomials, and provide an orthogonal polynomial basis for Bergman space.

See also

Notes

  1. (Horn Johnson), page 28; (Stoer Bulirsch), page 251
  2. Biswa Nath Datta (2010) Numerical Linear Algebra and Applications, 2nd Ed., Society for Industrial and Applied Mathematics (SIAM) ISBN:978-0-89871-685-6, p. 307
  3. Horn & Johnson 1985, p. 35
  4. Ramon Garcia, Stephan; Horn, Roger (2017). A Second Course In Linear Algebra. ISBN 9781107103818. 
  5. https://arxiv.org/abs/1501.07812
  6. Lecture Notes. Notes for 2016-10-21 Cornell University
  7. "Computational Routines (eigenvalues) in LAPACK". http://sites.science.oregonstate.edu/~landaur/nacphy/lapack/eigen.html. 

References