Hermitian

2 min read Last updated Sun May 31 2026 19:40:41 GMT+0000 (Coordinated Universal Time)

Refers to the operation of transposing a matrix and taking the complex conjugate for all elements. Denoted by AHA^{H}.

AH=AT=(A)TA^{H} = \overline{A^{T}} = \big(\overline{A}\big)^{T}

Hermitian Matrix

Matrix AA is a Hermitian matrix iff AH=AA^H=A.

For a Hermitian matrix AA:

  • All eigenvalues are real
  • Eigenvectors of distinct eigenvalues are orthogonal
  • By spectral theorem (not covered in this module), there are exists nn orthogonal eigenvectors.
  • Eigenvectors of AA form a basis for Cn×1\mathbb{C}^{n\times 1}

For any matrix Bm×nB_{m\times n}:

  • BBHBB^H and BHBB^HB are Hermitian matrices and have the same positive eigenvalues.
  • rank(BHB)=rank(BBH)=rank(BH)=rank(B)\text{rank}(B^HB) = \text{rank}(BB^H) = \text{rank}(B^H) = \text{rank}(B) is equal to the number of positive eigenvalues of BHBB^HB.

Unitary Matrix

Matrix PCn×nP \in C_{n×n} Unitary iff: PHP=PPH=IP^HP= PP^H = I (i.e. P1=PHP^{-1} = P^H).

If columns of PP are orthonormal then P is Unitary.

Positive Definite Matrix

Matrix ACn×nA\in C_{n×n} is Positive Definite iff XHAX>0X^HAX>0 for all XCn{0}X \in \mathbb{C}^n - \set{\underline{0}}.

For a Hermitian matrix AA with {λ1,λ2,,λn}\set{\lambda_1, \lambda_2,\dots,\lambda_n} eigenvalues:

i1,,nλi is positive    A is Positive Definite\forall i \in 1,\dots,n \quad \lambda_i\text{ is positive} \iff A\text{ is Positive Definite}

Principal Minor

Principal minor of AA of order kk is the determinant of the matrix produced by deleting last nkn-k rows and columns.

If all principle minors are positive (of order n=1n=1 to nn) when A is Positive Definite.

Was this helpful?