LINEAR-ALGEBRA · Interactive Practice | Unit 24 · Video 3
| Formula | Name | Meaning |
|---|---|---|
| Symmetric factorization | The diagonal of holds the pivots | |
| Sign Theorem (Sylvester's Law) | Pivot signs match eigenvalue signs (symmetric ) | |
| Product Identity | Pivots and eigenvalues share the same product | |
| Shifting Trick | Subtracting shifts every eigenvalue by |
Pivots and eigenvalues rarely match value-for-value — yet their sign split and their product always agree.
💡 Challenge: make the matrix indefinite (set ) — a red pivot appears exactly when a red eigenvalue does.
How many eigenvalues sit above a threshold ? Count the positive pivots of .
💡 Probe at several shifts and subtract the counts to trap each eigenvalue in an interval — the bisection that solvers like LAPACK run on cheap elimination alone.
Question 1
Suppose you run elimination on a symmetric matrix and find the pivots
How many positive eigenvalues does have?
✅ Correct! The number of positive pivots equals the number of positive eigenvalues.
❌ Not quite. Count the pivots that are positive — those are and .
Solution:
By the Sign Theorem (Sylvester's Law of Inertia), for a symmetric matrix:
The pivots are . There are 2 positive pivots ( and ), so has 2 positive eigenvalues (and 2 negative ones).
Note: The actual eigenvalue values are not equal to the pivots — only the sign counts match.
Question 2
A student claims: "For any square matrix , the number of positive pivots equals the number of positive eigenvalues."
Is this claim true or false?
✅ Correct! Symmetry is essential — the Sign Theorem fails for general matrices.
❌ Not quite. The Sign Theorem (Sylvester's Law) requires the matrix to be symmetric.
Solution:
The claim is false. The Sign Theorem requires to be symmetric.
For non-symmetric matrices:
Symmetry guarantees that (a congruence transformation), and Sylvester's Law of Inertia says congruence preserves the signature. Drop symmetry and the protection is gone.
Question 3
For a symmetric matrix , you compute the pivots and find
Without computing eigenvalues, what is ?
✅ Correct! .
❌ Not quite. The determinant equals the product of the pivots.
Solution:
The determinant equals the product of the pivots (and equivalently, the product of the eigenvalues):
This is one of the two invariants that pivots and eigenvalues share — products always agree, even though individual values do not.
Question 4
You run elimination on a symmetric matrix at three different shifts and count positive pivots:
How many eigenvalues of lie in the interval ?
✅ Correct! Subtract: 4 eigenvalues above 0, minus 2 above 5, leaves 2 in .
❌ Not quite. Use subtraction: (eigenvalues above 0) minus (eigenvalues above 5).
Solution:
The number of positive pivots of equals the number of eigenvalues of greater than .
So the number of eigenvalues in the interval is:
This is the bisection idea: by combining counts at different shifts, we can locate every eigenvalue in an interval — using only elimination, no polynomial root-finding.
Solved: 0 / 4