Documentation

Mathlib.LinearAlgebra.Matrix.Charpoly.Eigs

Eigenvalues are characteristic polynomial roots. #

In fields we show that:

In an algebraically closed field we show that:

Note that over other fields such as , these results can be used by using A.map (algebraMap ℝ ℂ) as the matrix, and then applying RingHom.map_det.

The two lemmas Matrix.det_eq_prod_roots_charpoly and Matrix.trace_eq_sum_roots_charpoly are more commonly stated as trace is the sum of eigenvalues and determinant is the product of eigenvalues. Mathlib has already defined eigenvalues in LinearAlgebra.Eigenspace as the roots of the minimal polynomial of a linear endomorphism. These do not have correct multiplicity and cannot be used in the theorems above. Hence we express these theorems in terms of the roots of the characteristic polynomial directly.

TODO #

The proofs of det_eq_prod_roots_charpoly_of_splits and trace_eq_sum_roots_charpoly_of_splits closely resemble norm_gen_eq_prod_roots and trace_gen_eq_sum_roots respectively, but the dependencies are not general enough to unify them. We should refactor Polynomial.prod_roots_eq_coeff_zero_of_monic_of_split and Polynomial.sum_roots_eq_nextCoeff_of_monic_of_split to assume splitting over an arbitrary map.