Zulip Chat Archive
Stream: mathlib4
Topic: Matrix Eigenvalues
Bashar Hamade (Jun 14 2025 at 15:19):
I am working on some proofs that require Linear Algebra properties , specifically properties on Eigenvalues of a Matrix of dimensions 'n x n' or its Spectral Radius , but I cannot seem to get access to some easy and intuitive way to work on that with the current implementations in Mathlib .
Bashar Hamade (Jun 14 2025 at 15:21):
to prove something like :
what would I need to import and how to approach it without overcomplicating the whole procedure
Bashar Hamade (Jun 14 2025 at 15:31):
my current implementation of matrix 'A' is something like :
A : Matrix (Fin n) (Fin n) ℝ
Eric Wieser (Jun 14 2025 at 18:10):
It's possible that https://github.com/eric-wieser/lean-matrix-cookbook will be useful to you, which you can use as a reference card between (some) matrix and the corresponding Lean spellings
Last updated: Dec 20 2025 at 21:32 UTC