Characteristic Polynomial

Definition

For a square matrix AA of size n×nn \times n, the characteristic polynomial pA(λ)p_A(\lambda) is defined as:

pA(λ)=det(AλI)p_A(\lambda) = \det(A - \lambda I)

where II is the identity matrix of the same size as AA.

Properties

Finding Eigenvalues

The eigenvalues of a matrix AA are the roots of its characteristic polynomial:

pA(λ)=0p_A(\lambda) = 0

Degree and Coefficients

  • The characteristic polynomial of an n×nn \times n matrix is a polynomial of degree nn
  • The coefficient of λn\lambda^n is (1)n(-1)^n
  • The constant term is det(A)\det(A)
  • The coefficient of λn1\lambda^{n-1} is (1)n1tr(A)(-1)^{n-1}\text{tr}(A), where tr(A)\text{tr}(A) is the trace of AA

Similar Matrices

Two matrices are similar if and only if they have the same characteristic polynomial.

Examples

2x2 Matrix

Consider the matrix:

A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}

The characteristic polynomial is:

pA(λ)=det(aλbcdλ)=(aλ)(dλ)bc=λ2(a+d)λ+(adbc)p_A(\lambda) = \det\begin{pmatrix} a-\lambda & b \\ c & d-\lambda \end{pmatrix} = (a-\lambda)(d-\lambda) - bc = \lambda^2 - (a+d)\lambda + (ad-bc)

3x3 Matrix

For a general 3x3 matrix:

A=(abcdefghi)A = \begin{pmatrix} a & b & c \\ d & e & f \\ g & h & i \end{pmatrix}

The characteristic polynomial is:

pA(λ)=λ3+(a+e+i)λ2(ae+ai+eibdcgfh)λ+det(A)p_A(\lambda) = -\lambda^3 + (a+e+i)\lambda^2 - (ae+ai+ei-bd-cg-fh)\lambda + \det(A)

Applications

The characteristic polynomial is fundamental in:

  • Finding eigenvalues of matrices
  • Determining matrix similarity
  • Analyzing stability of dynamical systems
  • Solving systems of differential equations
  • Understanding matrix diagonalization