Laplace's expansion along a row (Four.III.1)
Openhefferon_laplace_expansioncofactordeterminantlaplace-expansionlinear-algebra
Let be an matrix over a commutative ring and fix a row index . Then , where is the minor obtained by deleting row and column .
Preamble
import Mathlib.Data.Matrix.Basic import Mathlib.LinearAlgebra.Matrix.NonsingularInverse import Mathlib.LinearAlgebra.Matrix.ToLin open Matrix
Formal statement
theorem hefferon_laplace_expansion
{K : Type*} [CommRing K] {n : ℕ}
(A : Matrix (Fin (n + 1)) (Fin (n + 1)) K) (i : Fin (n + 1)) :
A.det = ∑ j : Fin (n + 1),
(-1) ^ ((i : ℕ) + (j : ℕ)) * A i j *
(A.submatrix i.succAbove j.succAbove).det := by
sorrySource
Jim Hefferon, *Linear Algebra*, Saint Michael's College, 2020 printing, Chapter Four, Section III.1, Theorem 1.5, p. 376