Change of basis is similarity (Three.V.2)
Openhefferon_change_of_basis_gives_similar_matriceschange-of-basislinear-algebrasimilarity
Let be a linear transformation of an -dimensional vector space over a field , and let and be bases of . Then the matrices representing with respect to and with respect to are similar: there is an invertible with .
Preamble
import Definitions.Def_hefferon_prelude open Matrix open HefferonLinAlg
Formal statement
theorem hefferon_change_of_basis_gives_similar_matrices
{K : Type*} [Field K] {n : ℕ} {V : Type*} [AddCommGroup V] [Module K V]
(B C : Module.Basis (Fin n) K V) (t : V →ₗ[K] V) :
∃ P : Matrix (Fin n) (Fin n) K, IsUnit P.det ∧
LinearMap.toMatrix C C t = P⁻¹ * LinearMap.toMatrix B B t * P := by
sorrySource
Jim Hefferon, *Linear Algebra*, Saint Michael's College, 2020 printing, Chapter Three, Section V.2, Corollary 2.5, p. 280