HOME

TheInfoList



OR:

In
linear algebra Linear algebra is the branch of mathematics concerning linear equations such as :a_1x_1+\cdots +a_nx_n=b, linear maps such as :(x_1, \ldots, x_n) \mapsto a_1x_1+\cdots +a_nx_n, and their representations in vector spaces and through matrix (mathemat ...
, a tridiagonal matrix is a band matrix that has nonzero elements only on the main diagonal, the subdiagonal/lower diagonal (the first diagonal below this), and the supradiagonal/upper diagonal (the first diagonal above the main diagonal). For example, the following matrix is tridiagonal: :\begin 1 & 4 & 0 & 0 \\ 3 & 4 & 1 & 0 \\ 0 & 2 & 3 & 4 \\ 0 & 0 & 1 & 3 \\ \end. The
determinant In mathematics, the determinant is a Scalar (mathematics), scalar-valued function (mathematics), function of the entries of a square matrix. The determinant of a matrix is commonly denoted , , or . Its value characterizes some properties of the ...
of a tridiagonal matrix is given by the ''
continuant In phonetics Phonetics is a branch of linguistics that studies how humans produce and perceive sounds or, in the case of sign languages, the equivalent aspects of sign. Linguists who specialize in studying the physical properties of speech ...
'' of its elements. An orthogonal transformation of a symmetric (or Hermitian) matrix to tridiagonal form can be done with the
Lanczos algorithm The Lanczos algorithm is an iterative method devised by Cornelius Lanczos that is an adaptation of power iteration, power methods to find the m "most useful" (tending towards extreme highest/lowest) eigenvalues and eigenvectors of an n \times n ...
.


Properties

A tridiagonal matrix is a matrix that is both upper and lower Hessenberg matrix. In particular, a tridiagonal matrix is a direct sum of ''p'' 1-by-1 and ''q'' 2-by-2 matrices such that — the dimension of the tridiagonal. Although a general tridiagonal matrix is not necessarily symmetric or Hermitian, many of those that arise when solving linear algebra problems have one of these properties. Furthermore, if a real tridiagonal matrix ''A'' satisfies ''a''''k'',''k''+1 ''a''''k''+1,''k'' > 0 for all ''k'', so that the signs of its entries are symmetric, then it is similar to a Hermitian matrix, by a diagonal change of basis matrix. Hence, its eigenvalues are real. If we replace the strict inequality by ''a''''k'',''k''+1 ''a''''k''+1,''k'' ≥ 0, then by continuity, the eigenvalues are still guaranteed to be real, but the matrix need no longer be similar to a Hermitian matrix. The set of all ''n × n'' tridiagonal matrices forms a ''3n-2'' dimensional
vector space In mathematics and physics, a vector space (also called a linear space) is a set (mathematics), set whose elements, often called vector (mathematics and physics), ''vectors'', can be added together and multiplied ("scaled") by numbers called sc ...
. Many linear algebra
algorithm In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
s require significantly less computational effort when applied to diagonal matrices, and this improvement often carries over to tridiagonal matrices as well.


Determinant

The
determinant In mathematics, the determinant is a Scalar (mathematics), scalar-valued function (mathematics), function of the entries of a square matrix. The determinant of a matrix is commonly denoted , , or . Its value characterizes some properties of the ...
of a tridiagonal matrix ''A'' of order ''n'' can be computed from a three-term recurrence relation. Write ''f''1 = , ''a''1,  = ''a''1 (i.e., ''f''1 is the determinant of the 1 by 1 matrix consisting only of ''a''1), and let :f_n = \begin a_1 & b_1 \\ c_1 & a_2 & b_2 \\ & c_2 & \ddots & \ddots \\ & & \ddots & \ddots & b_ \\ & & & c_ & a_n \end. The sequence (''f''''i'') is called the
continuant In phonetics Phonetics is a branch of linguistics that studies how humans produce and perceive sounds or, in the case of sign languages, the equivalent aspects of sign. Linguists who specialize in studying the physical properties of speech ...
and satisfies the recurrence relation :f_n = a_n f_ - c_b_f_ with initial values ''f''0 = 1 and ''f''−1 = 0. The cost of computing the determinant of a tridiagonal matrix using this formula is linear in ''n'', while the cost is cubic for a general matrix.


Inversion

The inverse of a non-singular tridiagonal matrix ''T'' :T = \begin a_1 & b_1 \\ c_1 & a_2 & b_2 \\ & c_2 & \ddots & \ddots \\ & & \ddots & \ddots & b_ \\ & & & c_ & a_n \end is given by :(T^)_ = \begin (-1)^b_i \cdots b_ \theta_ \phi_/\theta_n & \text i < j\\ \theta_ \phi_/\theta_n & \text i = j\\ (-1)^c_j \cdots c_ \theta_ \phi_/\theta_n & \text i > j\\ \end where the ''θi'' satisfy the recurrence relation :\theta_i = a_i \theta_ - b_c_\theta_ \qquad i=2,3,\ldots,n with initial conditions ''θ''0 = 1, ''θ''1 = ''a''1 and the ''ϕ''''i'' satisfy :\phi_i = a_i \phi_ - b_i c_i \phi_ \qquad i=n-1,\ldots,1 with initial conditions ''ϕ''''n''+1 = 1 and ''ϕ''''n'' = ''an''. Closed form solutions can be computed for special cases such as symmetric matrices with all diagonal and off-diagonal elements equal or Toeplitz matrices and for the general case as well. In general, the inverse of a tridiagonal matrix is a semiseparable matrix and vice versa. The inverse of a symmetric tridiagonal matrix can be written as a single-pair matrix (a.k.a. ''generator-representable semiseparable matrix'') of the form \begin \alpha_1 & -\beta_1 \\ -\beta_1 & \alpha_2 & -\beta_2 \\ & \ddots & \ddots & \ddots & \\ & & \ddots & \ddots & -\beta_ \\ & & & -\beta_ & \alpha_n \end^ = \begin a_1 b_1 & a_1 b_2 & \cdots & a_1 b_n \\ a_1 b_2 & a_2 b_2 & \cdots & a_2 b_n \\ \vdots & \vdots & \ddots & \vdots \\ a_1 b_n & a_2 b_n & \cdots & a_n b_n \end = \left( a_ b_ \right) where \begin \displaystyle a_i = \frac \\ \displaystyle b_i = \frac\end with \begin d_n = \alpha_n,\quad d_ = \alpha_ - \frac, & i = n, n-1, \cdots, 2, \\ \delta_1 = \alpha_1, \quad \delta_ = \alpha_ - \frac, & i = 1, 2, \cdots, n-1. \end


Solution of linear system

A system of equations ''Ax'' = ''b'' for b\in \R^n can be solved by an efficient form of Gaussian elimination when ''A'' is tridiagonal called tridiagonal matrix algorithm, requiring ''O''(''n'') operations.


Eigenvalues

When a tridiagonal matrix is also Toeplitz, there is a simple closed-form solution for its eigenvalues, namely: : a - 2 \sqrt \cos \left (\frac \right ), \qquad k=1, \ldots, n. A real symmetric tridiagonal matrix has real eigenvalues, and all the eigenvalues are distinct (simple) if all off-diagonal elements are nonzero. Numerous methods exist for the numerical computation of the eigenvalues of a real symmetric tridiagonal matrix to arbitrary finite precision, typically requiring O(n^2) operations for a matrix of size n\times n, although fast algorithms exist which (without parallel computation) require only O(n\log n). As a side note, an ''unreduced'' symmetric tridiagonal matrix is a matrix containing non-zero off-diagonal elements of the tridiagonal, where the eigenvalues are distinct while the eigenvectors are unique up to a scale factor and are mutually orthogonal.


Similarity to symmetric tridiagonal matrix

For ''unsymmetric'' or ''nonsymmetric'' tridiagonal matrices one can compute the eigendecomposition using a similarity transformation. Given a real tridiagonal, nonsymmetric matrix : T = \begin a_1 & b_1 \\ c_1 & a_2 & b_2 \\ & c_2 & \ddots & \ddots \\ & & \ddots & \ddots & b_ \\ & & & c_ & a_n \end where b_i \neq c_i . Assume that each product of off-diagonal entries is positive b_i c_i > 0 and define a transformation matrix D by : D := \operatorname(\delta_1 , \dots, \delta_n) \quad \text \quad \delta_i := \begin 1 & , \, i=1 \\ \sqrt & , \, i=2,\dots,n \,. \end The similarity transformation D^ T D yields a ''symmetric'' tridiagonal matrix J by: : J:=D^ T D = \begin a_1 & \sgn b_1 \, \sqrt \\ \sgn b_1 \, \sqrt & a_2 & \sgn b_2 \, \sqrt \\ & \sgn b_2 \, \sqrt & \ddots & \ddots \\ & & \ddots & \ddots & \sgn b_ \, \sqrt \\ & & & \sgn b_ \, \sqrt & a_n \end \,. Note that T and J have the same eigenvalues.


Computer programming

A transformation that reduces a general matrix to Hessenberg form will reduce a Hermitian matrix to tridiagonal form. So, many eigenvalue algorithms, when applied to a Hermitian matrix, reduce the input Hermitian matrix to (symmetric real) tridiagonal form as a first step. A tridiagonal matrix can also be stored more efficiently than a general matrix by using a special storage scheme. For instance, the LAPACK Fortran package stores an unsymmetric tridiagonal matrix of order ''n'' in three one-dimensional arrays, one of length ''n'' containing the diagonal elements, and two of length ''n'' − 1 containing the subdiagonal and superdiagonal elements.


Applications

The discretization in space of the one-dimensional diffusion or heat equation :\frac = \alpha \frac using second order central finite differences results in : \begin \frac \\ \frac \\ \vdots \\ \frac \end = \frac \begin -2 & 1 & 0 & \ldots & 0 \\ 1 & -2 & 1 & \ddots & \vdots \\ 0 & \ddots & \ddots & \ddots & 0 \\ \vdots & & 1 & -2 & 1 \\ 0 & \ldots & 0 & 1 & -2 \end \begin u_(t) \\ u_(t) \\ \vdots \\ u_(t) \\ \end with discretization constant \Delta x. The matrix is tridiagonal with a_=-2 and b_=c_=1. Note: no boundary conditions are used here.


See also

* Pentadiagonal matrix * Jacobi matrix (operator)


Notes


External links


Tridiagonal and Bidiagonal Matrices
in the LAPACK manual. *
High performance algorithms
for reduction to condensed (Hessenberg, tridiagonal, bidiagonal) form
Tridiagonal linear system solver
in C++ {{Matrix classes Sparse matrices