Characteristic Polynomial in Linear Algebra | Generated by AI

Home 2025.10

Comprehensive Introduction to the Characteristic Polynomial in Linear Algebra

The characteristic polynomial is a fundamental concept in linear algebra that plays a crucial role in studying eigenvalues, eigenvectors, diagonalization, and matrix properties. It provides a bridge between linear transformations and polynomial equations, allowing us to analyze matrices in terms of their spectral properties.


1. Definition of the Characteristic Polynomial

Given an \( n \times n \) square matrix \( A \) over a field \( \mathbb{F} \) (typically \( \mathbb{R} \) or \( \mathbb{C} \)), the characteristic polynomial of \( A \), denoted \( p_A(\lambda) \) or \( \chi_A(\lambda) \), is defined as:

\[ p_A(\lambda) = \det(\lambda I_n - A) \]

where:

Explicit Form

For an \( n \times n \) matrix \( A \), the characteristic polynomial is an \( n \)-th degree monic polynomial in \( \lambda \):

\[ p_A(\lambda) = \lambda^n + c_{n-1} \lambda^{n-1} + \dots + c_1 \lambda + c_0 \]

where the coefficients \( c_i \) depend on the entries of \( A \).


2. Key Properties of the Characteristic Polynomial

The characteristic polynomial has several important properties that make it useful in linear algebra:

(1) Roots are Eigenvalues

The roots of the characteristic polynomial \( p_A(\lambda) = 0 \) are precisely the eigenvalues of \( A \).

\[ p_A(\lambda) = 0 \implies \det(\lambda I - A) = 0 \implies \lambda \text{ is an eigenvalue of } A. \]

(2) Degree and Leading Coefficient

(3) Cayley-Hamilton Theorem

A remarkable result states that every matrix satisfies its own characteristic equation:

\[ p_A(A) = A^n + c_{n-1} A^{n-1} + \dots + c_1 A + c_0 I = 0 \]

This theorem is useful in computing matrix powers, inverses, and functions of matrices.

(4) Similarity Invariance

If two matrices \( A \) and \( B \) are similar (i.e., \( B = P^{-1}AP \) for some invertible \( P \)), then they have the same characteristic polynomial:

\[ p_A(\lambda) = p_B(\lambda) \]

This means the characteristic polynomial is a similarity invariant.

(5) Trace and Determinant Relations

For example, for a \( 2 \times 2 \) matrix: \[ A = \begin{pmatrix} a & b \ c & d \end{pmatrix}, \quad p_A(\lambda) = \lambda^2 - (a + d)\lambda + (ad - bc) \] Here, \( \text{tr}(A) = a + d \) and \( \det(A) = ad - bc \).

(6) Multiplicity of Eigenvalues

For a matrix to be diagonalizable, the geometric multiplicity must equal the algebraic multiplicity for every eigenvalue.


3. Computation of the Characteristic Polynomial

The characteristic polynomial can be computed in several ways:

(1) Direct Expansion (for Small Matrices)

For a \( 2 \times 2 \) matrix: \[ A = \begin{pmatrix} a & b \ c & d \end{pmatrix}, \quad \lambda I - A = \begin{pmatrix} \lambda - a & -b \ -c & \lambda - d \end{pmatrix} \] \[ p_A(\lambda) = (\lambda - a)(\lambda - d) - bc = \lambda^2 - (a + d)\lambda + (ad - bc) \]

For a \( 3 \times 3 \) matrix, the computation becomes more involved but follows the same determinant expansion.

(2) Using Laplace Expansion (for Larger Matrices)

For larger matrices, the determinant is computed using cofactor expansion along a row or column.

(3) Leveraging Special Matrix Structures

(4) Numerical Methods (for Large Matrices)

For very large matrices, exact computation is impractical, and numerical methods (e.g., QR algorithm) are used to approximate eigenvalues.


4. Applications of the Characteristic Polynomial

The characteristic polynomial is used in various areas of linear algebra and beyond:

(1) Eigenvalue and Eigenvector Analysis

(2) Diagonalization and Jordan Form

(3) Matrix Functions and Differential Equations

(4) Stability Analysis (Control Theory)

(5) Graph Theory (Adjacency Matrix)

(6) Quantum Mechanics


5. Example Computations

Example 1: \( 2 \times 2 \) Matrix

Let: \[ A = \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} \] Compute \( \lambda I - A \): \[ \lambda I - A = \begin{pmatrix} \lambda - 1 & -2 \ -3 & \lambda - 4 \end{pmatrix} \] The characteristic polynomial is: \[ p_A(\lambda) = (\lambda - 1)(\lambda - 4) - (-2)(-3) = \lambda^2 - 5\lambda + 4 - 6 = \lambda^2 - 5\lambda - 2 \] Eigenvalues: Solve \( \lambda^2 - 5\lambda - 2 = 0 \): \[ \lambda = \frac{5 \pm \sqrt{25 + 8}}{2} = \frac{5 \pm \sqrt{33}}{2} \]

Example 2: Triangular Matrix

Let: \[ A = \begin{pmatrix} 2 & 1 & 0 \ 0 & 2 & 1 \ 0 & 0 & 3 \end{pmatrix} \] The characteristic polynomial is: \[ p_A(\lambda) = (2 - \lambda)^2 (3 - \lambda) \] Eigenvalues: \( \lambda = 2 \) (algebraic multiplicity 2), \( \lambda = 3 \) (multiplicity 1).


6. Limitations and Considerations



8. Conclusion

The characteristic polynomial is a powerful tool in linear algebra that connects matrix theory, polynomial equations, and eigenvalue problems. It is essential for:

While computing it can be challenging for large matrices, its theoretical importance cannot be overstated, making it a cornerstone of advanced linear algebra and applied mathematics.


Would you like a deeper dive into any specific aspect, such as computational methods, applications in physics, or the Cayley-Hamilton theorem?


Back

mistralai/mistral-medium-3.1

Donate