Zulip Chat Archive
Stream: Is there code for X?
Topic: Algebra trace equals sum of roots of charpoly
Alex Braat (Oct 26 2022 at 12:24):
Is there a theorem like ring_theory.trace.trace_eq_sum_roots that does not assume that the algebra is a field?
Or some theorem that proves that the trace of a linear endomorphism of a finite dimensional vector space equals the sum of the roots of its characteristic polynomial?
Anne Baanen (Oct 26 2022 at 12:30):
For the linear map, you might get what you want by using docs#linear_map.to_matrix and then applying docs#matrix.trace_eq_neg_charpoly_coeff
Anne Baanen (Oct 26 2022 at 12:32):
For the connection of that coefficient with the roots we have docs#polynomial.sum_roots_eq_next_coeff_of_monic_of_split
Anne Baanen (Oct 26 2022 at 12:35):
I recall I stated the result for algebra traces for fields in order to make the minimal polynomial well-defined. We can probably extend it to any suitable pair S / R
where minimal polynomials are unique but I'm not sure how well it would generalize beyond that.
Alex Braat (Oct 26 2022 at 12:42):
Thanks for the suggestions!
Kevin Buzzard (Oct 26 2022 at 15:14):
For min polys to be unique you need the ideal of which annihiliates the endomorphism to be principal, and if isn't a field then is very rarely a PID.
Daan van Gent (Oct 28 2022 at 12:04):
I agree that R should be a field, but there is not reason S should be a field, right? It suffices that R is a field and S is an R-algebra that is finitely generated as R-module.
Last updated: Dec 20 2023 at 11:08 UTC