Definition: The polynomial det(A - λI), whose roots are the eigenvalues of the matrix A.
Chapter 1: The Matrix's Secret Code-Finder (Elementary School Understanding)
Imagine every matrix (a grid of numbers) is a locked treasure chest. Inside the chest are the matrix's most important secret numbers, its eigenvalues.
We can't just look inside the chest. We need a special key. The Characteristic Polynomial is the secret recipe for making that key.
Here's how you use the recipe:
You take your matrix, A.
You get a special magic ingredient called λ (lambda), which is a placeholder for the secret numbers we're trying to find.
You follow the recipe steps to combine your matrix A and the magic ingredient λ.
The recipe produces a special kind of math puzzle called a polynomial. For a 2x2 matrix, it might look something like λ² - 5λ + 6.
Now, the final step: The solutions to this puzzle (the numbers that make it equal to zero) are the secret numbers hidden in the treasure chest! For λ² - 5λ + 6 = 0, the solutions are λ=2 and λ=3. So, the eigenvalues of our matrix are 2 and 3.
The Characteristic Polynomial is the "code-finder" that turns a matrix into a puzzle whose answers are the matrix's deepest secrets.
Chapter 2: The Equation for Eigenvalues (Middle School Understanding)
In linear algebra, the eigenvalues of a square matrix A are the special scalars λ for which there exists a non-zero vector v (an eigenvector) such that Av = λv. This means that when the matrix A acts on its eigenvector v, it simply scales v by the factor λ.
To find these special numbers, we need to solve this equation.
Av = λv
Av - λv = 0
We can't just subtract λ from A, so we use the identity matrix I.
Av - λIv = 0
(A - λI)v = 0
This is a very important equation. We are looking for a non-zero vector v that solves this. A system of linear equations Mx = 0 has a non-zero solution only if the matrix M is singular, which means its determinant is zero.
In our case, the matrix M is (A - λI). So, the condition for finding eigenvalues is:
det(A - λI) = 0
The left side of this equation, det(A - λI), is the Characteristic Polynomial. It is a polynomial where the variable is λ. The roots of this polynomial—the values of λ that make it equal to zero—are, by definition, the eigenvalues of the matrix A.
Chapter 3: An Invariant of a Linear Transformation (High School Understanding)
The Characteristic Polynomial of an n x n matrix A is the polynomial p(λ) defined by:
p(λ) = det(A - λI)
Its roots are the eigenvalues of A.
Example: Finding the Characteristic Polynomial of a 2x2 Matrix
Let A = [[4, 1], [2, 3]].
Construct A - λI:
A - λI = [[4, 1], [2, 3]] - λ[[1, 0], [0, 1]] = [[4-λ, 1], [2, 3-λ]]
Calculate the Determinant:
det(A - λI) = (4-λ)(3-λ) - (1)(2)
= 12 - 4λ - 3λ + λ² - 2
= λ² - 7λ + 10
The characteristic polynomial is p(λ) = λ² - 7λ + 10.
To find the eigenvalues, we set p(λ) = 0 and solve:
λ² - 7λ + 10 = 0
(λ - 5)(λ - 2) = 0
The eigenvalues are λ₁ = 5 and λ₂ = 2.
Invariance under Similarity:
A crucial property of the characteristic polynomial is that it is invariant under similarity transformations. If B = P⁻¹AP, then A and B have the exact same characteristic polynomial.
Proof Sketch: det(B - λI) = det(P⁻¹AP - λP⁻¹IP) = det(P⁻¹(A - λI)P) = det(P⁻¹)det(A - λI)det(P) = det(A - λI).
This proves that the polynomial, and therefore the set of eigenvalues, is a property of the abstract linear operator, not just its particular matrix representation in a chosen basis.
Chapter 4: The Key to Diagonalization and Jordan Form (College Level)
The Characteristic Polynomial, p_A(λ) = det(A - λI), is a central object in advanced linear algebra and matrix theory. Its properties determine the structure of the linear operator represented by A.
Relationship between Coefficients and Invariants:
For an n x n matrix A, the characteristic polynomial has the form:
p(λ) = λⁿ - Tr(A)λⁿ⁻¹ + ... + (-1)ⁿdet(A)
The coefficients of the polynomial are directly related to the fundamental invariants of the matrix:
The coefficient of λⁿ⁻¹ is the negative of the trace of A.
The constant term (λ⁰) is the determinant of A.
Other coefficients are related to the sums of the principal minors of A.
Vieta's formulas then connect these invariants to the eigenvalues (the roots): Σλᵢ = Tr(A) and Πλᵢ = det(A).
Role in Diagonalization:
A matrix A is diagonalizable if there exists a basis of eigenvectors for the vector space. This is directly related to the characteristic polynomial.
If the characteristic polynomial has n distinct roots, the matrix is guaranteed to be diagonalizable.
If the polynomial has repeated roots (roots with an algebraic multiplicity greater than 1), the matrix may or may not be diagonalizable. Diagonalizability then depends on whether the algebraic multiplicity of each eigenvalue equals its geometric multiplicity (the dimension of its corresponding eigenspace).
Cayley-Hamilton Theorem: This fundamental theorem states that every square matrix satisfies its own characteristic equation. That is, if p(λ) is the characteristic polynomial of A, then p(A) = 0 (where the constant term is multiplied by I, and 0 is the zero matrix).
The characteristic polynomial and its factorization are therefore the master key to understanding the deep structure of a linear transformation, determining its invariants, its diagonalizability, and ultimately its representation in the simplest possible basis (the Jordan normal form).
Chapter 5: Worksheet - Finding the Secret Numbers
Part 1: The Secret Code-Finder (Elementary Level)
What is the "treasure" hidden inside a matrix?
What is the name of the "key" (the puzzle) that we create to find this treasure?
The solutions to the puzzle are the treasure. What is the mathematical name for these solutions?
Part 2: The Equation for Eigenvalues (Middle School Level)
The definition of an eigenvalue is Av = λv. What is the crucial equation we derive from this that allows us to find λ?
To have a non-zero solution v, what must be true about the determinant of the matrix (A - λI)?
Part 3: Calculation (High School Level)
For the matrix A = [[5, -1], [3, 1]]:
Construct the matrix A - λI.
Calculate its determinant to find the characteristic polynomial.
Solve the characteristic polynomial to find the eigenvalues of A.
Verify that the sum of your eigenvalues equals the trace of A.
Verify that the product of your eigenvalues equals the determinant of A.
Part 4: Deeper Properties (College Level)
What does it mean for a property of a matrix to be "invariant under similarity"? Why is this important for the characteristic polynomial?
What is the Cayley-Hamilton Theorem?
A 3x3 matrix has a characteristic polynomial of p(λ) = (λ-2)²(λ-3).
What are its eigenvalues? What is the algebraic multiplicity of each?
Is this matrix guaranteed to be diagonalizable? Why or why not? What other information would you need?