Matrix Types

Work in progress. This note is still being written and incomplete.

2 min read Last updated Tue Jul 28 2026 05:11:18 GMT+0000 (Coordinated Universal Time)

Diagonally Dominant Matrix

An n×nn \times n matrix AA is diagonally dominant iff

aiij=1,jinaij|a_{ii}| \geq \sum_{j=1, j \neq i}^{n} |a_{ij}|

holds for each i=1,2,,ni = 1, 2, \dots, n.

Strictly Diagonally Dominant Matrix

AA is strictly diagonally dominant iff the inequality above is strict for each ii. Non-singular.

Gaussian elimination on Ax=bAx = b then proceeds without row or column interchanges, and the computation is stable with respect to round-off error growth.

Positive Definite Matrix

See Positive Definite Matrix for the definition and eigenvalue characterization.

A leading principal submatrix AkA_k of AA is the k×kk \times k block

Ak=[a11a1kak1akk]A_k = \begin{bmatrix} a_{11} & \cdots & a_{1k} \\ \vdots & \ddots & \vdots \\ a_{k1} & \cdots & a_{kk} \end{bmatrix}

for some 1kn1 \leq k \leq n.

A symmetric matrix AA is positive definite iff every leading principal submatrix has a positive determinant.

A symmetric matrix AA is positive definite iff Gaussian elimination on Ax=bAx = b can be performed without row interchanges with all pivot elements positive. The computation is then stable with respect to round-off error growth.

A=(210121012)A = \begin{pmatrix} 2 & -1 & 0 \\ -1 & 2 & -1 \\ 0 & -1 & 2 \end{pmatrix}

is positive definite: its leading principal submatrices have determinants 22, 33, and 44, all positive.

Convergent Matrix

An n×nn \times n matrix AA is convergent to BB iff

limkAk=B\lim_{k \to \infty} A^k = B

For a square matrix AA, the following are equivalent:

  • AA is convergent to 00, i.e. limkAk=0\lim_{k \to \infty} A^k = 0
  • limkAkm=0\lim_{k \to \infty} \lVert A^k \rVert_m = 0 for some matrix norm m\lVert \cdot \rVert_m
  • ρ(A)<1\rho(A) < 1
Was this helpful?