Jacobi eigenvalue algorithm

From The Right Wiki
(Redirected from Jacobi transformation)
Jump to navigationJump to search

In numerical linear algebra, the Jacobi eigenvalue algorithm is an iterative method for the calculation of the eigenvalues and eigenvectors of a real symmetric matrix (a process known as diagonalization). It is named after Carl Gustav Jacob Jacobi, who first proposed the method in 1846,[1] but only became widely used in the 1950s with the advent of computers.[2]

Description

Let S be a symmetric matrix, and G=G(i,j,θ) be a Givens rotation matrix. Then:

S=GSG

is symmetric and similar to S. Furthermore, S has entries:

S'ii=c2Sii2scSij+s2SjjS'jj=s2Sii+2scSij+c2SjjS'ij=S'ji=(c2s2)Sij+sc(SiiSjj)S'ik=S'ki=cSiksSjkki,jS'jk=S'kj=sSik+cSjkki,jS'kl=Sklk,li,j

where s=sin(θ) and c=cos(θ). Since G is orthogonal, S and S have the same Frobenius norm ||||F (the square-root sum of squares of all components), however we can choose θ such that Sij=0, in which case S has a larger sum of squares on the diagonal:

S'ij=cos(2θ)Sij+12sin(2θ)(SiiSjj)

Set this equal to 0, and rearrange:

tan(2θ)=2SijSjjSii

if Sjj=Sii

θ=π4

In order to optimize this effect, Sij should be the off-diagonal element with the largest absolute value, called the pivot. The Jacobi eigenvalue method repeatedly performs rotations until the matrix becomes almost diagonal. Then the elements in the diagonal are approximations of the (real) eigenvalues of S.

Convergence

If p=Skl is a pivot element, then by definition |Sij||p| for 1i,jn,ij . Let Γ(S)2 denote the sum of squares of all off-diagonal entries of S. Since S has exactly 2N:=n(n1) off-diagonal elements, we have p2Γ(S)22Np2 or 2p2Γ(S)2/N . Now Γ(SJ)2=Γ(S)22p2. This implies Γ(SJ)2(11/N)Γ(S)2 or Γ(SJ)(11/N)1/2Γ(S); that is, the sequence of Jacobi rotations converges at least linearly by a factor (11/N)1/2 to a diagonal matrix. A number of N Jacobi rotations is called a sweep; let Sσ denote the result. The previous estimate yields

Γ(Sσ)(11N)N/2Γ(S);

that is, the sequence of sweeps converges at least linearly with a factor ≈ e1/2 . However the following result of Schönhage[3] yields locally quadratic convergence. To this end let S have m distinct eigenvalues λ1,...,λm with multiplicities ν1,...,νm and let d > 0 be the smallest distance of two different eigenvalues. Let us call a number of

NS:=n(n1)2μ=1m12νμ(νμ1)N

Jacobi rotations a Schönhage-sweep. If Ss denotes the result then

Γ(Ss)n21(γ2d2γ),γ:=Γ(S) .

Thus convergence becomes quadratic as soon as Γ(S)<d2+n21

Cost

Each Givens rotation can be done in O(n) steps when the pivot element p is known. However the search for p requires inspection of all N ≈ 1/2 n2 off-diagonal elements. We can reduce this to O(n) complexity too if we introduce an additional index array m1,,mn1 with the property that mi is the index of the largest element in row i, (i = 1, ..., n − 1) of the current S. Then the indices of the pivot (k, l) must be one of the pairs (i,mi). Also the updating of the index array can be done in O(n) average-case complexity: First, the maximum entry in the updated rows k and l can be found in O(n) steps. In the other rows i, only the entries in columns k and l change. Looping over these rows, if mi is neither k nor l, it suffices to compare the old maximum at mi to the new entries and update mi if necessary. If mi should be equal to k or l and the corresponding entry decreased during the update, the maximum over row i has to be found from scratch in O(n) complexity. However, this will happen on average only once per rotation. Thus, each rotation has O(n) and one sweep O(n3) average-case complexity, which is equivalent to one matrix multiplication. Additionally the mi must be initialized before the process starts, which can be done in n2 steps. Typically the Jacobi method converges within numerical precision after a small number of sweeps. Note that multiple eigenvalues reduce the number of iterations since NS<N.

Algorithm

The following algorithm is a description of the Jacobi method in math-like notation. It calculates a vector e which contains the eigenvalues and a matrix E which contains the corresponding eigenvectors; that is, ei is an eigenvalue and the column Ei an orthonormal eigenvector for ei, i = 1, ..., n. procedure jacobi(SRn×n; out eRn; out ERn×n) var i, k, l, m, stateN s, c, t, p, y, d, rR indNn changedLn function maxind(kN) ∈ N ! index of largest off-diagonal element in row k m := k+1 for i := k+2 to n do ifSki│ > │Skmthen m := i endif endfor return m endfunc procedure update(kN; tR) ! update ek and its status y := ek; ek := y+t if changedk and (y=ek) then changedk := false; state := state−1 elsif (not changedk) and (yek) then changedk := true; state := state+1 endif endproc procedure rotate(k,l,i,jN) ! perform rotation of Sij, Skl ┐ ┌ ┐┌ ┐ │Skl│ │cs││Skl│ │ │ := │ ││ │ │Sij│ │s c││Sij│ └ ┘ └ ┘└ endproc ! init e, E, and arrays ind, changed E := I; state := n for k := 1 to n do indk := maxind(k); ek := Skk; changedk := true endfor while state≠0 do ! next rotation m := 1 ! find index (k,l) of pivot p for k := 2 to n−1 do ifSk indk│ > │Sm indmthen m := k endif endfor k := m; l := indm; p := Skl ! calculate c = cos φ, s = sin φ y := (elek)/2; d := │y│+√(p2+y2) r := √(p2+d2); c := d/r; s := p/r; t := p2/d if y<0 then s := −s; t := −t endif Skl := 0.0; update(k,−t); update(l,t) ! rotate rows and columns k and l for i := 1 to k−1 do rotate(i,k,i,l) endfor for i := k+1 to l−1 do rotate(k,i,i,l) endfor for i := l+1 to n do rotate(k,i,l,i) endfor ! rotate eigenvectors for i := 1 to n do ┐ ┌ ┐┌ ┐ │Eik│ │cs││Eik│ │ │ := │ ││ │ │Eil│ │s c││Eil│ └ ┘ └ ┘└ endfor ! update all potentially changed indi for i := 1 to n do indi := maxind(i) endfor loop endproc

Notes

1. The logical array changed holds the status of each eigenvalue. If the numerical value of ek or el changes during an iteration, the corresponding component of changed is set to true, otherwise to false. The integer state counts the number of components of changed which have the value true. Iteration stops as soon as state = 0. This means that none of the approximations e1,...,en has recently changed its value and thus it is not very likely that this will happen if iteration continues. Here it is assumed that floating point operations are optimally rounded to the nearest floating point number. 2. The upper triangle of the matrix S is destroyed while the lower triangle and the diagonal are unchanged. Thus it is possible to restore S if necessary according to for k := 1 to n−1 do ! restore matrix S for l := k+1 to n do Skl := Slk endfor endfor 3. The eigenvalues are not necessarily in descending order. This can be achieved by a simple sorting algorithm. for k := 1 to n−1 do m := k for l := k+1 to n do if el > em then m := l endif endfor if km then swap em,ek swap Em,Ek endif endfor 4. The algorithm is written using matrix notation (1 based arrays instead of 0 based). 5. When implementing the algorithm, the part specified using matrix notation must be performed simultaneously. 6. This implementation does not correctly account for the case in which one dimension is an independent subspace. For example, if given a diagonal matrix, the above implementation will never terminate, as none of the eigenvalues will change. Hence, in real implementations, extra logic must be added to account for this case.

Example

Let S=(4306035303006754206067516201050354201050700) Then jacobi produces the following eigenvalues and eigenvectors after 3 sweeps (19 iterations) : e1=2585.25381092892231 E1=(0.02919332316478605880.3287120557631889970.7914111458331263310.514552749997152907) e2=37.1014913651276582 E2=(0.1791862905354548260.7419177906284534350.1002281369471921990.638282528193614892) e3=1.4780548447781369 E3=(0.5820756994972376500.3705021850670930580.5095786345017996260.514048272222164294) e4=0.1666428611718905 E4=(0.7926082911637635850.4519231209015997940.3224163985818249920.252161169688241933)

Applications for real symmetric matrices

When the eigenvalues (and eigenvectors) of a symmetric matrix are known, the following values are easily calculated.

Singular values
The singular values of a (square) matrix A are the square roots of the (non-negative) eigenvalues of ATA. In case of a symmetric matrix S we have of STS=S2, hence the singular values of S are the absolute values of the eigenvalues of S
2-norm and spectral radius
The 2-norm of a matrix A is the norm based on the Euclidean vectornorm; that is, the largest value Ax2 when x runs through all vectors with x2=1. It is the largest singular value of A. In case of a symmetric matrix it is the largest absolute value of its eigenvectors and thus equal to its spectral radius.
Condition number
The condition number of a nonsingular matrix A is defined as cond(A)=A2A12. In case of a symmetric matrix it is the absolute value of the quotient of the largest and smallest eigenvalue. Matrices with large condition numbers can cause numerically unstable results: small perturbation can result in large errors. Hilbert matrices are the most famous ill-conditioned matrices. For example, the fourth-order Hilbert matrix has a condition of 15514, while for order 8 it is 2.7 × 108.
Rank
A matrix A has rank r if it has r columns that are linearly independent while the remaining columns are linearly dependent on these. Equivalently, r is the dimension of the range of A. Furthermore it is the number of nonzero singular values.
In case of a symmetric matrix r is the number of nonzero eigenvalues. Unfortunately because of rounding errors numerical approximations of zero eigenvalues may not be zero (it may also happen that a numerical approximation is zero while the true value is not). Thus one can only calculate the numerical rank by making a decision which of the eigenvalues are close enough to zero.
Pseudo-inverse
The pseudo inverse of a matrix A is the unique matrix X=A+ for which AX and XA are symmetric and for which AXA=A,XAX=X holds. If A is nonsingular, then A+=A1.
When procedure jacobi (S, e, E) is called, then the relation S=ETDiag(e)E holds where Diag(e) denotes the diagonal matrix with vector e on the diagonal. Let e+ denote the vector where ei is replaced by 1/ei if ei0 and by 0 if ei is (numerically close to) zero. Since matrix E is orthogonal, it follows that the pseudo-inverse of S is given by S+=ETDiag(e+)E.
Least squares solution
If matrix A does not have full rank, there may not be a solution of the linear system Ax=b. However one can look for a vector x for which Axb2 is minimal. The solution is x=A+b. In case of a symmetric matrix S as before, one has x=S+b=ETDiag(e+)Eb.
Matrix exponential
From S=ETDiag(e)E one finds expS=ETDiag(expe)E where exp e is the vector where ei is replaced by expei. In the same way, f(S) can be calculated in an obvious way for any (analytic) function f.
Linear differential equations
The differential equation x=Ax,x(0)=a has the solution x(t)=exp(tA). For a symmetric matrix S, it follows that x(t)=ETDiag(expte)Ea. If a=i=1naiEi is the expansion of a by the eigenvectors of S, then x(t)=i=1naiexp(tei)Ei.
Let Ws be the vector space spanned by the eigenvectors of S which correspond to a negative eigenvalue and Wu analogously for the positive eigenvalues. If aWs then limtx(t)=0; that is, the equilibrium point 0 is attractive to x(t). If aWu then limtx(t)=; that is, 0 is repulsive to x(t). Ws and Wu are called stable and unstable manifolds for S. If a has components in both manifolds, then one component is attracted and one component is repelled. Hence x(t) approaches Wu as t.

Julia implementation

The following code is a straight-forward implementation of the mathematical description of the Jacobi eigenvalue algorithm in the Julia programming language.

using LinearAlgebra, Test
function find_pivot(Sprime)
n = size(Sprime,1)
pivot_i = pivot_j = 0
pivot = 0.0
for j = 1:n
for i = 1:(j-1)
if abs(Sprime[i,j]) > pivot
pivot_i = i
pivot_j = j
pivot = abs(Sprime[i,j])
end
end
end
return (pivot_i, pivot_j, pivot)
end
# in practice one should not instantiate explicitly the Givens rotation matrix
function givens_rotation_matrix(n,i,j,θ)
G = Matrix{Float64}(I,(n,n))
G[i,i] = G[j,j] = cos(θ)
G[i,j] = sin(θ)
G[j,i] = -sin(θ)
return G
end
# S is a symmetric n by n matrix
n = 4
sqrtS = randn(n,n);
S = sqrtS*sqrtS';
# the largest allowed off-diagonal element of U' * S * U
# where U are the eigenvectors
tol = 1e-14
Sprime = copy(S)
U = Matrix{Float64}(I,(n,n))
while true
(pivot_i, pivot_j, pivot) = find_pivot(Sprime)
if pivot < tol
break
end
θ = atan(2*Sprime[pivot_i,pivot_j]/(Sprime[pivot_j,pivot_j] - Sprime[pivot_i,pivot_i] )) / 2
G = givens_rotation_matrix(n,pivot_i,pivot_j,θ)
# update Sprime and U
Sprime .= G'*Sprime*G
U .= U * G
end
# Sprime is now (almost) a diagonal matrix
# extract eigenvalues
λ = diag(Sprime)
# sort eigenvalues (and corresponding eigenvectors U) by increasing values
i = sortperm(λ)
λ = λ[i]
U = U[:,i]
# S should be equal to U * diagm(λ) * U'
@test S ≈ U * diagm(λ) * U'

Generalizations

The Jacobi Method has been generalized to complex Hermitian matrices, general nonsymmetric real and complex matrices as well as block matrices. Since singular values of a real matrix are the square roots of the eigenvalues of the symmetric matrix S=ATA it can also be used for the calculation of these values. For this case, the method is modified in such a way that S must not be explicitly calculated which reduces the danger of round-off errors. Note that JSJT=JATAJT=JATJTJAJT=BTB with B:=JAJT . The Jacobi Method is also well suited for parallelism.[citation needed]

References

  1. Jacobi, C.G.J. (1846). "Über ein leichtes Verfahren, die in der Theorie der Säkularstörungen vorkommenden Gleichungen numerisch aufzulösen". Crelle's Journal (in German). 1846 (30): 51–94. doi:10.1515/crll.1846.30.51. S2CID 199546177.{{cite journal}}: CS1 maint: unrecognized language (link)
  2. Golub, G.H.; van der Vorst, H.A. (2000). "Eigenvalue computation in the 20th century". Journal of Computational and Applied Mathematics. 123 (1–2): 35–65. doi:10.1016/S0377-0427(00)00413-1.
  3. Schönhage, A. (1964). "Zur quadratischen Konvergenz des Jacobi-Verfahrens". Numerische Mathematik (in German). 6 (1): 410–412. doi:10.1007/BF01386091. MR 0174171. S2CID 118301078.{{cite journal}}: CS1 maint: unrecognized language (link)

Further reading

External links