The permutation expansion of the determinant (Four.I.3)
Openhefferon_det_permutation_expansiondeterminantlinear-algebrapermutations
For an matrix over a commutative ring , the determinant is the sum, over all permutations of , of the sign of times the product .
Preamble
import Mathlib.Data.Matrix.Basic import Mathlib.LinearAlgebra.Matrix.NonsingularInverse import Mathlib.LinearAlgebra.Matrix.ToLin open Matrix
Formal statement
theorem hefferon_det_permutation_expansion
{K : Type*} [CommRing K] {n : ℕ} (A : Matrix (Fin n) (Fin n) K) :
A.det = ∑ σ : Equiv.Perm (Fin n), Equiv.Perm.sign σ • ∏ i, A (σ i) i := by
sorrySource
Jim Hefferon, *Linear Algebra*, Saint Michael's College, 2020 printing, Chapter Four, Section I.3, Theorem 3.1, p. 349