Loogle!
Result
Found 141 declarations mentioning Matrix.submatrix.
- Matrix.submatrix π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} (A : Matrix m n Ξ±) (r : l β m) (c : o β n) : Matrix l o Ξ± - Matrix.submatrix_id_id π Mathlib.LinearAlgebra.Matrix.Defs
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} (A : Matrix m n Ξ±) : A.submatrix id id = A - Matrix.submatrix_apply π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} (A : Matrix m n Ξ±) (r : l β m) (c : o β n) (i : l) (j : o) : A.submatrix r c i j = A (r i) (c j) - Matrix.col_submatrix_eq_comp π Mathlib.LinearAlgebra.Matrix.Defs
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} {mβ : Type u_8} {nβ : Type u_9} (A : Matrix m n Ξ±) (r : mβ β m) (c : nβ β n) (j : nβ) : (A.submatrix r c).col j = A.col (c j) β r - Matrix.row_submatrix_eq_comp π Mathlib.LinearAlgebra.Matrix.Defs
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} {mβ : Type u_8} {nβ : Type u_9} (A : Matrix m n Ξ±) (r : mβ β m) (c : nβ β n) (i : mβ) : (A.submatrix r c).row i = A.row (r i) β c - Matrix.transpose_submatrix π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} (A : Matrix m n Ξ±) (r : l β m) (c : o β n) : (A.submatrix r c).transpose = A.transpose.submatrix c r - Matrix.col_submatrix π Mathlib.LinearAlgebra.Matrix.Defs
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} {mβ : Type u_8} {nβ : Type u_9} (A : Matrix m n Ξ±) (r : mβ β m) (c : nβ β n) (j : nβ) : (A.submatrix r c).col j = (A.submatrix r id).col (c j) - Matrix.row_submatrix π Mathlib.LinearAlgebra.Matrix.Defs
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} {mβ : Type u_8} {nβ : Type u_9} (A : Matrix m n Ξ±) (r : mβ β m) (c : nβ β n) (i : mβ) : (A.submatrix r c).row i = (A.submatrix id c).row (r i) - Matrix.submatrix_map π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} {Ξ² : Type w} (f : Ξ± β Ξ²) (eβ : l β m) (eβ : o β n) (A : Matrix m n Ξ±) : (A.map f).submatrix eβ eβ = (A.submatrix eβ eβ).map f - Matrix.submatrix_submatrix π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} {lβ : Type u_8} {oβ : Type u_9} (A : Matrix m n Ξ±) (rβ : l β m) (cβ : o β n) (rβ : lβ β l) (cβ : oβ β o) : (A.submatrix rβ cβ).submatrix rβ cβ = A.submatrix (rβ β rβ) (cβ β cβ) - Matrix.submatrix_mem_matrix π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} {S : Set Ξ±} {M : Matrix m n Ξ±} {r : l β m} {c : o β n} (hM : M β S.matrix) : M.submatrix r c β S.matrix - Matrix.submatrix_mem_matrix_iff π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} {S : Set Ξ±} {M : Matrix m n Ξ±} {r : l β m} {c : o β n} (hr : Function.Surjective r) (hc : Function.Surjective c) : M.submatrix r c β S.matrix β M β S.matrix - Matrix.submatrix_neg π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Neg Ξ±] (A : Matrix m n Ξ±) : (-A).submatrix = -A.submatrix - Matrix.submatrix_zero π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Zero Ξ±] : Matrix.submatrix 0 = 0 - Matrix.submatrix_smul π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} {R : Type u_8} [SMul R Ξ±] (r : R) (A : Matrix m n Ξ±) : (r β’ A).submatrix = r β’ A.submatrix - Matrix.reindex_apply π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} (eβ : m β l) (eβ : n β o) (M : Matrix m n Ξ±) : (Matrix.reindex eβ eβ) M = M.submatrix βeβ.symm βeβ.symm - Matrix.submatrix_add π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Add Ξ±] (A B : Matrix m n Ξ±) : (A + B).submatrix = A.submatrix + B.submatrix - Matrix.submatrix_sub π Mathlib.LinearAlgebra.Matrix.Defs
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Sub Ξ±] (A B : Matrix m n Ξ±) : (A - B).submatrix = A.submatrix - B.submatrix - Matrix.diag_submatrix π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} (A : Matrix m m Ξ±) (e : l β m) : (A.submatrix e e).diag = A.diag β e - Matrix.submatrix_diagonal π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [DecidableEq m] [DecidableEq l] (d : m β Ξ±) (e : l β m) (he : Function.Injective e) : (Matrix.diagonal d).submatrix e e = Matrix.diagonal (d β e) - Matrix.submatrix_one π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [One Ξ±] [DecidableEq m] [DecidableEq l] (e : l β m) (he : Function.Injective e) : Matrix.submatrix 1 e e = 1 - Matrix.submatrix_diagonal_embedding π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [DecidableEq m] [DecidableEq l] (d : m β Ξ±) (e : l βͺ m) : (Matrix.diagonal d).submatrix βe βe = Matrix.diagonal (d β βe) - Matrix.submatrix_one_embedding π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [One Ξ±] [DecidableEq m] [DecidableEq l] (e : l βͺ m) : Matrix.submatrix 1 βe βe = 1 - Matrix.submatrix_diagonal_equiv π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [DecidableEq m] [DecidableEq l] (d : m β Ξ±) (e : l β m) : (Matrix.diagonal d).submatrix βe βe = Matrix.diagonal (d β βe) - Matrix.submatrix_one_equiv π Mathlib.Data.Matrix.Diagonal
{l : Type u_1} {m : Type u_2} {Ξ± : Type v} [Zero Ξ±] [One Ξ±] [DecidableEq m] [DecidableEq l] (e : l β m) : Matrix.submatrix 1 βe βe = 1 - Matrix.submatrix_mulVec_equiv π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Fintype o] [NonUnitalNonAssocSemiring Ξ±] (M : Matrix m n Ξ±) (v : o β Ξ±) (eβ : l β m) (eβ : o β n) : (M.submatrix eβ βeβ).mulVec v = M.mulVec (v β βeβ.symm) β eβ - Matrix.submatrix_vecMul_equiv π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype l] [Fintype m] [NonUnitalNonAssocSemiring Ξ±] (M : Matrix m n Ξ±) (v : l β Ξ±) (eβ : l β m) (eβ : o β n) : Matrix.vecMul v (M.submatrix (βeβ) eβ) = Matrix.vecMul (v β βeβ.symm) M β eβ - Matrix.submatrix_mul π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Fintype o] [Mul Ξ±] [AddCommMonoid Ξ±] {p : Type u_7} {q : Type u_8} (M : Matrix m n Ξ±) (N : Matrix n p Ξ±) (eβ : l β m) (eβ : o β n) (eβ : q β p) (heβ : Function.Bijective eβ) : (M * N).submatrix eβ eβ = M.submatrix eβ eβ * N.submatrix eβ eβ - Matrix.submatrix_mul_transpose_submatrix π Mathlib.Data.Matrix.Mul
{m : Type u_2} {n : Type u_3} {Ξ± : Type v} [Fintype m] [Fintype n] [AddCommMonoid Ξ±] [Mul Ξ±] (e : m β n) (M : Matrix m n Ξ±) : M.submatrix id βe * M.transpose.submatrix (βe) id = M * M.transpose - Matrix.submatrix_mul_equiv π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Fintype o] [AddCommMonoid Ξ±] [Mul Ξ±] {p : Type u_7} {q : Type u_8} (M : Matrix m n Ξ±) (N : Matrix n p Ξ±) (eβ : l β m) (eβ : o β n) (eβ : q β p) : M.submatrix eβ βeβ * N.submatrix (βeβ) eβ = (M * N).submatrix eβ eβ - Matrix.submatrix_id_mul_left π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Fintype o] [Mul Ξ±] [AddCommMonoid Ξ±] {p : Type u_7} (M : Matrix m n Ξ±) (N : Matrix o p Ξ±) (eβ : l β m) (eβ : n β o) : M.submatrix eβ id * N.submatrix (βeβ) id = M.submatrix eβ βeβ.symm * N - Matrix.submatrix_id_mul_right π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Fintype o] [Mul Ξ±] [AddCommMonoid Ξ±] {p : Type u_7} (M : Matrix m n Ξ±) (N : Matrix o p Ξ±) (eβ : l β p) (eβ : o β n) : M.submatrix id βeβ * N.submatrix id eβ = M * N.submatrix (βeβ.symm) eβ - Matrix.mul_submatrix_one π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype n] [Finite o] [NonAssocSemiring Ξ±] [DecidableEq o] (eβ : n β o) (eβ : l β o) (M : Matrix m n Ξ±) : M * Matrix.submatrix 1 (βeβ) eβ = M.submatrix id (βeβ.symm β eβ) - Matrix.one_submatrix_mul π Mathlib.Data.Matrix.Mul
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Fintype m] [Finite o] [NonAssocSemiring Ξ±] [DecidableEq o] (eβ : l β o) (eβ : m β o) (M : Matrix m n Ξ±) : Matrix.submatrix 1 eβ βeβ * M = M.submatrix (βeβ.symm β eβ) id - Matrix.submatrix_single_equiv π Mathlib.Data.Matrix.Basis
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type u_7} [DecidableEq l] [DecidableEq m] [DecidableEq n] [DecidableEq o] [Zero Ξ±] (f : l β n) (g : m β o) (i : n) (j : o) (r : Ξ±) : (Matrix.single i j r).submatrix βf βg = Matrix.single (f.symm i) (g.symm j) r - Matrix.conjTranspose_submatrix π Mathlib.LinearAlgebra.Matrix.ConjTranspose
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [Star Ξ±] (A : Matrix m n Ξ±) (r : l β m) (c : o β n) : (A.submatrix r c).conjTranspose = A.conjTranspose.submatrix c r - Matrix.fromBlocks_submatrix_sum_swap_sum_swap π Mathlib.Data.Matrix.Block
{l : Type u_13} {m : Type u_14} {n : Type u_15} {o : Type u_16} {Ξ± : Type u_17} (A : Matrix n l Ξ±) (B : Matrix n m Ξ±) (C : Matrix o l Ξ±) (D : Matrix o m Ξ±) : (Matrix.fromBlocks A B C D).submatrix Sum.swap Sum.swap = Matrix.fromBlocks D C B A - Matrix.fromBlocks_submatrix_sum_swap_left π Mathlib.Data.Matrix.Block
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {p : Type u_5} {Ξ± : Type u_11} (A : Matrix n l Ξ±) (B : Matrix n m Ξ±) (C : Matrix o l Ξ±) (D : Matrix o m Ξ±) (f : p β l β m) : (Matrix.fromBlocks A B C D).submatrix Sum.swap f = (Matrix.fromBlocks C D A B).submatrix id f - Matrix.fromBlocks_submatrix_sum_swap_right π Mathlib.Data.Matrix.Block
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {p : Type u_5} {Ξ± : Type u_11} (A : Matrix n l Ξ±) (B : Matrix n m Ξ±) (C : Matrix o l Ξ±) (D : Matrix o m Ξ±) (f : p β n β o) : (Matrix.fromBlocks A B C D).submatrix f Sum.swap = (Matrix.fromBlocks B A D C).submatrix f id - Matrix.blockDiagonal'_submatrix_eq_blockDiagonal π Mathlib.Data.Matrix.Block
{m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type u_11} [DecidableEq o] [Zero Ξ±] (M : o β Matrix m n Ξ±) : (Matrix.blockDiagonal' M).submatrix (Prod.toSigma β Prod.swap) (Prod.toSigma β Prod.swap) = Matrix.blockDiagonal M - Matrix.updateCol_subsingleton π Mathlib.LinearAlgebra.Matrix.RowCol
{m : Type u_2} {n : Type u_3} {R : Type u_5} [Subsingleton n] (A : Matrix m n R) (i : n) (b : m β R) : A.updateCol i b = (Matrix.replicateCol (Fin 1) b).submatrix id (Function.const n 0) - Matrix.updateRow_subsingleton π Mathlib.LinearAlgebra.Matrix.RowCol
{m : Type u_2} {n : Type u_3} {R : Type u_5} [Subsingleton m] (A : Matrix m n R) (i : m) (b : n β R) : A.updateRow i b = (Matrix.replicateRow (Fin 1) b).submatrix (Function.const m 0) id - Matrix.submatrix_updateCol_equiv π Mathlib.LinearAlgebra.Matrix.RowCol
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [DecidableEq o] [DecidableEq n] (A : Matrix m n Ξ±) (j : n) (c : m β Ξ±) (e : l β m) (f : o β n) : (A.updateCol j c).submatrix βe βf = (A.submatrix βe βf).updateCol (f.symm j) fun i => c (e i) - Matrix.submatrix_updateRow_equiv π Mathlib.LinearAlgebra.Matrix.RowCol
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [DecidableEq l] [DecidableEq m] (A : Matrix m n Ξ±) (i : m) (r : n β Ξ±) (e : l β m) (f : o β n) : (A.updateRow i r).submatrix βe βf = (A.submatrix βe βf).updateRow (e.symm i) fun i => r (f i) - Matrix.updateCol_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.RowCol
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [DecidableEq o] [DecidableEq n] (A : Matrix m n Ξ±) (j : o) (c : l β Ξ±) (e : l β m) (f : o β n) : (A.submatrix βe βf).updateCol j c = (A.updateCol (f j) fun i => c (e.symm i)).submatrix βe βf - Matrix.updateRow_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.RowCol
{l : Type u_1} {m : Type u_2} {n : Type u_3} {o : Type u_4} {Ξ± : Type v} [DecidableEq l] [DecidableEq m] (A : Matrix m n Ξ±) (i : l) (r : o β Ξ±) (e : l β m) (f : o β n) : (A.submatrix βe βf).updateRow i r = (A.updateRow (e i) fun j => r (f.symm j)).submatrix βe βf - Matrix.submatrix_cons_row π Mathlib.LinearAlgebra.Matrix.Notation
{Ξ± : Type u} {m : β} {m' : Type uβ} {n' : Type uβ} {o' : Type uβ} (A : Matrix m' n' Ξ±) (i : m') (row : Fin m β m') (col : o' β n') : A.submatrix (Matrix.vecCons i row) col = Matrix.vecCons (fun j => A i (col j)) (A.submatrix row col) - Matrix.submatrix_updateCol_succAbove π Mathlib.LinearAlgebra.Matrix.Notation
{Ξ± : Type u} {n : β} {m' : Type uβ} {o' : Type uβ} (A : Matrix m' (Fin n.succ) Ξ±) (v : m' β Ξ±) (f : o' β m') (i : Fin n.succ) : (A.updateCol i v).submatrix f i.succAbove = A.submatrix f i.succAbove - Matrix.submatrix_updateRow_succAbove π Mathlib.LinearAlgebra.Matrix.Notation
{Ξ± : Type u} {m : β} {n' : Type uβ} {o' : Type uβ} (A : Matrix (Fin m.succ) n' Ξ±) (v : n' β Ξ±) (f : o' β n') (i : Fin m.succ) : (A.updateRow i v).submatrix i.succAbove f = A.submatrix i.succAbove f - Matrix.submatrix_empty π Mathlib.LinearAlgebra.Matrix.Notation
{Ξ± : Type u} {m' : Type uβ} {n' : Type uβ} {o' : Type uβ} (A : Matrix m' n' Ξ±) (row : Fin 0 β m') (col : o' β n') : A.submatrix row col = Matrix.of ![] - Matrix.mulVecLin_submatrix π Mathlib.LinearAlgebra.Matrix.ToLin
{R : Type u_1} [CommSemiring R] {k : Type u_2} {l : Type u_3} {m : Type u_4} {n : Type u_5} [Fintype n] [Fintype l] (fβ : m β k) (eβ : n β l) (M : Matrix k l R) : (M.submatrix fβ βeβ).mulVecLin = LinearMap.funLeft R R fβ ββ M.mulVecLin ββ LinearMap.funLeft R R βeβ.symm - Matrix.toLin'_submatrix π Mathlib.LinearAlgebra.Matrix.ToLin
{R : Type u_1} [CommSemiring R] {k : Type u_2} {l : Type u_3} {m : Type u_4} {n : Type u_5} [DecidableEq n] [Fintype n] [Fintype l] [DecidableEq l] (fβ : m β k) (eβ : n β l) (M : Matrix k l R) : Matrix.toLin' (M.submatrix fβ βeβ) = LinearMap.funLeft R R fβ ββ Matrix.toLin' M ββ LinearMap.funLeft R R βeβ.symm - Matrix.IsDetpBalanced.submatrix_of_card_le π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] {A : Matrix n n R} {a b : R} (h : A.IsDetpBalanced a b) (le : Fintype.card n β€ Fintype.card m) (f g : m β n) : (A.submatrix f g).IsDetpBalanced a b - Matrix.adjp_none_none π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {R : Type u_3} [Fintype n] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (A : Matrix (Option n) (Option n) R) : Matrix.adjp s A none none = Matrix.detp s (A.submatrix some some) - Matrix.Nonsingular.submatrix_equiv π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] {A : Matrix n n R} {eβ eβ : m β n} : A.Nonsingular β (A.submatrix βeβ βeβ).Nonsingular - Matrix.nonsingular_submatrix_equiv_iff π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] {A : Matrix n n R} {eβ eβ : m β n} : (A.submatrix βeβ βeβ).Nonsingular β A.Nonsingular - Matrix.detp_submatrix_equiv_self π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (A : Matrix n n R) (e : m β n) : Matrix.detp s (A.submatrix βe βe) = Matrix.detp s A - Matrix.IsDetpBalanced.submatrix_equiv π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] {A : Matrix n n R} {a b : R} (eβ eβ : m β n) (h : A.IsDetpBalanced a b) : (A.submatrix βeβ βeβ).IsDetpBalanced a b - Matrix.isDetpBalanced_submatrix_equiv_iff π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] {A : Matrix n n R} {a b : R} {eβ eβ : m β n} : (A.submatrix βeβ βeβ).IsDetpBalanced a b β A.IsDetpBalanced a b - Matrix.adjp_none_some π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {R : Type u_3} [Fintype n] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (i : n) (A : Matrix (Option n) (Option n) R) : Matrix.adjp s A none (some i) = Matrix.detp (-s) (A.submatrix (Function.update some i none) some) - Matrix.adjp_some_none π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {R : Type u_3} [Fintype n] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (i : n) (A : Matrix (Option n) (Option n) R) : Matrix.adjp s A (some i) none = Matrix.detp (-s) (A.submatrix some (Function.update some i none)) - Matrix.detp_option_expand_row_none π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {R : Type u_3} [Fintype n] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (A : Matrix (Option n) (Option n) R) : Matrix.detp s A = A none none * Matrix.detp s (A.submatrix some some) + β k, A none (some k) * Matrix.detp (-s) (A.submatrix some (Function.update some k none)) - Matrix.detp_submatrix_equiv_equiv π Mathlib.LinearAlgebra.Matrix.SemiringInverse
{n : Type u_1} {m : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [CommSemiring R] (s : β€Λ£) (A : Matrix n n R) (f g : m β n) : Matrix.detp s (A.submatrix βf βg) = Matrix.detp (s * Equiv.Perm.sign (f.symm.trans g)) A - Matrix.det_submatrix_equiv_self π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{m : Type u_1} {n : Type u_2} [DecidableEq n] [Fintype n] [DecidableEq m] [Fintype m] {R : Type v} [CommRing R] (e : n β m) (A : Matrix m m R) : (A.submatrix βe βe).det = A.det - Matrix.abs_det_submatrix_equiv_equiv π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{m : Type u_1} {n : Type u_2} [DecidableEq n] [Fintype n] [DecidableEq m] [Fintype m] {R : Type u_3} [CommRing R] [LinearOrder R] [IsStrictOrderedRing R] (eβ eβ : n β m) (A : Matrix m m R) : |(A.submatrix βeβ βeβ).det| = |A.det| - Matrix.det_permute π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{n : Type u_2} [DecidableEq n] [Fintype n] {R : Type v} [CommRing R] (Ο : Equiv.Perm n) (M : Matrix n n R) : (M.submatrix (βΟ) id).det = ββ(Equiv.Perm.sign Ο) * M.det - Matrix.det_permute' π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{n : Type u_2} [DecidableEq n] [Fintype n] {R : Type v} [CommRing R] (Ο : Equiv.Perm n) (M : Matrix n n R) : (M.submatrix id βΟ).det = ββ(Equiv.Perm.sign Ο) * M.det - Matrix.det_succ_column_zero π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{R : Type v} [CommRing R] {n : β} (A : Matrix (Fin n.succ) (Fin n.succ) R) : A.det = β i, (-1) ^ βi * A i 0 * (A.submatrix i.succAbove Fin.succ).det - Matrix.det_succ_row_zero π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{R : Type v} [CommRing R] {n : β} (A : Matrix (Fin n.succ) (Fin n.succ) R) : A.det = β j, (-1) ^ βj * A 0 j * (A.submatrix Fin.succ j.succAbove).det - Matrix.det_succ_column π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{R : Type v} [CommRing R] {n : β} (A : Matrix (Fin n.succ) (Fin n.succ) R) (j : Fin n.succ) : A.det = β i, (-1) ^ (βi + βj) * A i j * (A.submatrix i.succAbove j.succAbove).det - Matrix.det_succ_row π Mathlib.LinearAlgebra.Matrix.Determinant.Basic
{R : Type v} [CommRing R] {n : β} (A : Matrix (Fin n.succ) (Fin n.succ) R) (i : Fin n.succ) : A.det = β j, (-1) ^ (βi + βj) * A i j * (A.submatrix i.succAbove j.succAbove).det - Matrix.IsSymm.submatrix π Mathlib.LinearAlgebra.Matrix.Symmetric
{Ξ± : Type u_1} {n : Type u_3} {m : Type u_4} {A : Matrix n n Ξ±} (h : A.IsSymm) (f : m β n) : (A.submatrix f f).IsSymm - Matrix.adjugate_submatrix_equiv_self π Mathlib.LinearAlgebra.Matrix.Adjugate
{m : Type u} {n : Type v} {Ξ± : Type w} [DecidableEq n] [Fintype n] [DecidableEq m] [Fintype m] [CommRing Ξ±] (e : n β m) (A : Matrix m m Ξ±) : (A.submatrix βe βe).adjugate = A.adjugate.submatrix βe βe - Matrix.adjugate_fin_succ_eq_det_submatrix π Mathlib.LinearAlgebra.Matrix.Adjugate
{Ξ± : Type w} [CommRing Ξ±] {n : β} (A : Matrix (Fin n.succ) (Fin n.succ) Ξ±) (i j : Fin n.succ) : A.adjugate i j = (-1) ^ (βj + βi) * (A.submatrix j.succAbove i.succAbove).det - Matrix.cramer_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.Adjugate
{m : Type u} {n : Type v} {Ξ± : Type w} [DecidableEq n] [Fintype n] [DecidableEq m] [Fintype m] [CommRing Ξ±] (A : Matrix m m Ξ±) (e : n β m) (b : n β Ξ±) : (A.submatrix βe βe).cramer b = A.cramer (b β βe.symm) β βe - Matrix.trace_submatrix_succ π Mathlib.LinearAlgebra.Matrix.Trace
{R : Type u_6} {n : β} [AddCommMonoid R] (M : Matrix (Fin n.succ) (Fin n.succ) R) : M 0 0 + (M.submatrix Fin.succ Fin.succ).trace = M.trace - Matrix.kroneckerMap_submatrix_left π Mathlib.LinearAlgebra.Matrix.Kronecker
{Ξ± : Type u_3} {Ξ² : Type u_5} {Ξ³ : Type u_7} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} {l' : Type u_15} {m' : Type u_16} (f : Ξ± β Ξ² β Ξ³) (A : Matrix l m Ξ±) (B : Matrix n p Ξ²) (r : l' β l) (c : m' β m) : Matrix.kroneckerMap f (A.submatrix r c) B = (Matrix.kroneckerMap f A B).submatrix (Prod.map r id) (Prod.map c id) - Matrix.kroneckerMap_submatrix_right π Mathlib.LinearAlgebra.Matrix.Kronecker
{Ξ± : Type u_3} {Ξ² : Type u_5} {Ξ³ : Type u_7} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} {n' : Type u_17} {p' : Type u_18} (f : Ξ± β Ξ² β Ξ³) (A : Matrix l m Ξ±) (B : Matrix n p Ξ²) (r : n' β n) (c : p' β p) : Matrix.kroneckerMap f A (B.submatrix r c) = (Matrix.kroneckerMap f A B).submatrix (Prod.map id r) (Prod.map id c) - Matrix.kroneckerMap_submatrix_submatrix π Mathlib.LinearAlgebra.Matrix.Kronecker
{Ξ± : Type u_3} {Ξ² : Type u_5} {Ξ³ : Type u_7} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} {l' : Type u_15} {m' : Type u_16} {n' : Type u_17} {p' : Type u_18} (f : Ξ± β Ξ² β Ξ³) (A : Matrix l m Ξ±) (B : Matrix n p Ξ²) (r : l' β l) (c : m' β m) (r' : n' β n) (c' : p' β p) : Matrix.kroneckerMap f (A.submatrix r c) (B.submatrix r' c') = (Matrix.kroneckerMap f A B).submatrix (Prod.map r r') (Prod.map c c') - Matrix.conjTranspose_kronecker' π Mathlib.LinearAlgebra.Matrix.Kronecker
{R : Type u_1} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} [Mul R] [StarMul R] (x : Matrix l m R) (y : Matrix n p R) : (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) x y).conjTranspose = (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) y.conjTranspose x.conjTranspose).submatrix Prod.swap Prod.swap - Matrix.kronecker_assoc' π Mathlib.LinearAlgebra.Matrix.Kronecker
{Ξ± : Type u_3} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} {q : Type u_13} {r : Type u_14} [Semigroup Ξ±] (A : Matrix l m Ξ±) (B : Matrix n p Ξ±) (C : Matrix q r Ξ±) : (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) A B) C).submatrix β(Equiv.prodAssoc l n q).symm β(Equiv.prodAssoc m p r).symm = Matrix.kroneckerMap (fun x1 x2 => x1 * x2) A (Matrix.kroneckerMap (fun x1 x2 => x1 * x2) B C) - Matrix.kroneckerTMul_assoc' π Mathlib.LinearAlgebra.Matrix.Kronecker
(R : Type u_1) {Ξ± : Type u_3} {Ξ² : Type u_5} {Ξ³ : Type u_7} {l : Type u_9} {m : Type u_10} {n : Type u_11} {p : Type u_12} {q : Type u_13} {r : Type u_14} [CommSemiring R] [AddCommMonoid Ξ±] [AddCommMonoid Ξ²] [AddCommMonoid Ξ³] [Module R Ξ±] [Module R Ξ²] [Module R Ξ³] (A : Matrix l m Ξ±) (B : Matrix n p Ξ²) (C : Matrix q r Ξ³) : ((Matrix.kroneckerMap (TensorProduct.tmul R) (Matrix.kroneckerMap (TensorProduct.tmul R) A B) C).map β(TensorProduct.assoc R Ξ± Ξ² Ξ³)).submatrix β(Equiv.prodAssoc l n q).symm β(Equiv.prodAssoc m p r).symm = Matrix.kroneckerMap (TensorProduct.tmul R) A (Matrix.kroneckerMap (TensorProduct.tmul R) B C) - Matrix.isUnit_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] {A : Matrix m m Ξ±} (eβ eβ : n β m) : IsUnit (A.submatrix βeβ βeβ) β IsUnit A - Matrix.inv_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) : (A.submatrix βeβ βeβ)β»ΒΉ = Aβ»ΒΉ.submatrix βeβ βeβ - Matrix.invertibleOfSubmatrixEquivInvertible π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) [Invertible (A.submatrix βeβ βeβ)] : Invertible A - Matrix.submatrixEquivInvertible π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) [Invertible A] : Invertible (A.submatrix βeβ βeβ) - Matrix.submatrixEquivInvertibleEquivInvertible π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) : Invertible (A.submatrix βeβ βeβ) β Invertible A - Matrix.invOf_submatrix_equiv_eq π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) [Invertible A] [Invertible (A.submatrix βeβ βeβ)] : β (A.submatrix βeβ βeβ) = (β A).submatrix βeβ βeβ - Matrix.submatrixEquivInvertibleEquivInvertible_apply π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) (xβ : Invertible (A.submatrix βeβ βeβ)) : (A.submatrixEquivInvertibleEquivInvertible eβ eβ) xβ = A.invertibleOfSubmatrixEquivInvertible eβ eβ - Matrix.submatrixEquivInvertibleEquivInvertible_symm_apply π Mathlib.LinearAlgebra.Matrix.NonsingularInverse
{m : Type u} {n : Type u'} {Ξ± : Type v} [Fintype n] [DecidableEq n] [CommRing Ξ±] [Fintype m] [DecidableEq m] (A : Matrix m m Ξ±) (eβ eβ : n β m) (xβ : Invertible A) : (A.submatrixEquivInvertibleEquivInvertible eβ eβ).symm xβ = A.submatrixEquivInvertible eβ eβ - Matrix.BlockTriangular.submatrix π Mathlib.LinearAlgebra.Matrix.Block
{Ξ± : Type u_1} {m : Type u_2} {n : Type u_3} {R : Type v} {M : Matrix m m R} {b : m β Ξ±} [LT Ξ±] [Zero R] {f : n β m} (h : M.BlockTriangular b) : (M.submatrix f f).BlockTriangular (b β f) - Matrix.det_piecewise_one_eq_submatrix_det π Mathlib.LinearAlgebra.Matrix.Charpoly.Coeff
{R : Type u} [CommRing R] {n : Type v} [DecidableEq n] [Fintype n] (M : Matrix n n R) (s : Finset n) : (Matrix.of (s.piecewise M.row (Matrix.row 1))).det = (M.submatrix Subtype.val Subtype.val).det - Matrix.charpoly_coeff_eq_sum_minors π Mathlib.LinearAlgebra.Matrix.Charpoly.Coeff
{R : Type u} [CommRing R] {n : Type v} [DecidableEq n] [Fintype n] (M : Matrix n n R) (k : β) (hk : k β€ Fintype.card n) : M.charpoly.coeff (Fintype.card n - k) = (-1) ^ k * β s β Finset.powersetCard k Finset.univ, (M.submatrix Subtype.val Subtype.val).det - Matrix.coeff_det_one_add_X_smul_eq_sum_minors π Mathlib.LinearAlgebra.Matrix.Charpoly.Coeff
{R : Type u} [CommRing R] {n : Type v} [DecidableEq n] [Fintype n] (M : Matrix n n R) (k : β) : (1 + Polynomial.X β’ M.map βPolynomial.C).det.coeff k = β s β Finset.powersetCard k Finset.univ, (M.submatrix Subtype.val Subtype.val).det - Module.Basis.toMatrix_reindex π Mathlib.LinearAlgebra.Matrix.Basis
{ΞΉ : Type u_1} {ΞΉ' : Type u_2} {R : Type u_5} {M : Type u_6} [CommSemiring R] [AddCommMonoid M] [Module R M] (b : Module.Basis ΞΉ R M) (v : ΞΉ' β M) (e : ΞΉ β ΞΉ') : (b.reindex e).toMatrix v = (b.toMatrix v).submatrix (βe.symm) id - Matrix.projVandermonde_comp π Mathlib.LinearAlgebra.Vandermonde
{R : Type u_1} [CommRing R] {n : β} {v w : Fin n β R} (f : Fin n β Fin n) : Matrix.projVandermonde (v β f) (w β f) = (Matrix.projVandermonde v w).submatrix f id - Matrix.submatrix_hadamard π Mathlib.LinearAlgebra.Matrix.Hadamard
{Ξ± : Type u_1} {m : Type u_2} {n : Type u_3} {l : Type u_5} {o : Type u_6} [Mul Ξ±] (A B : Matrix m n Ξ±) (e : l β m) (f : o β n) : (A.hadamard B).submatrix e f = (A.submatrix e f).hadamard (B.submatrix e f) - Matrix.IsHermitian.submatrix π Mathlib.LinearAlgebra.Matrix.Hermitian
{Ξ± : Type u_1} {m : Type u_3} {n : Type u_4} [Star Ξ±] {A : Matrix n n Ξ±} (h : A.IsHermitian) (f : m β n) : (A.submatrix f f).IsHermitian - Matrix.isHermitian_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.Hermitian
{Ξ± : Type u_1} {m : Type u_3} {n : Type u_4} [Star Ξ±] {A : Matrix n n Ξ±} (e : m β n) : (A.submatrix βe βe).IsHermitian β A.IsHermitian - Matrix.PosSemidef.submatrix π Mathlib.LinearAlgebra.Matrix.PosDef
{m : Type u_1} {n : Type u_2} {R : Type u_3} [Ring R] [PartialOrder R] [StarRing R] {M : Matrix n n R} (hM : M.PosSemidef) (e : m β n) : (M.submatrix e e).PosSemidef - Matrix.PosDef.submatrix π Mathlib.LinearAlgebra.Matrix.PosDef
{m : Type u_1} {n : Type u_2} {R : Type u_3} [Ring R] [PartialOrder R] [StarRing R] {M : Matrix n n R} (hM : M.PosDef) {e : m β n} (he : Function.Injective e) : (M.submatrix e e).PosDef - Matrix.posSemidef_submatrix_equiv π Mathlib.LinearAlgebra.Matrix.PosDef
{m : Type u_1} {n : Type u_2} {R : Type u_3} [Ring R] [PartialOrder R] [StarRing R] {M : Matrix n n R} (e : m β n) : (M.submatrix βe βe).PosSemidef β M.PosSemidef - Matrix.cRank_submatrix_le π Mathlib.LinearAlgebra.Matrix.Rank
{n : Type un} {nβ : Type unβ} {R : Type uR} [Semiring R] {m mβ : Type um} (A : Matrix m n R) (r : mβ β m) (c : nβ β n) : (A.submatrix r c).cRank β€ A.cRank - Matrix.eRank_submatrix_le π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {n : Type un} {nβ : Type unβ} {R : Type uR} [Semiring R] (A : Matrix m n R) (r : mβ β m) (c : nβ β n) : (A.submatrix r c).eRank β€ A.eRank - Matrix.lift_cRank_submatrix_le π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {n : Type un} {nβ : Type unβ} {R : Type uR} [Semiring R] (A : Matrix m n R) (r : mβ β m) (c : nβ β n) : Cardinal.lift.{um, max uR umβ} (A.submatrix r c).cRank β€ Cardinal.lift.{umβ, max uR um} A.cRank - Matrix.rank_submatrix_le π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {n : Type un} {nβ : Type unβ} {R : Type uR} [Fintype n] [CommSemiring R] [StrongRankCondition R] [Fintype nβ] (A : Matrix m n R) (r : mβ β m) (c : nβ β n) : (A.submatrix r c).rank β€ A.rank - Matrix.cRank_submatrix π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {nβ : Type unβ} {R : Type uR} {mβ : Type um} {n : Type un} [Semiring R] (A : Matrix m n R) (em : mβ β m) (en : nβ β n) : (A.submatrix βem βen).cRank = A.cRank - Matrix.eRank_submatrix π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {nβ : Type unβ} {R : Type uR} {n : Type un} [Semiring R] (A : Matrix m n R) (em : mβ β m) (en : nβ β n) : (A.submatrix βem βen).eRank = A.eRank - Matrix.lift_cRank_submatrix π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {nβ : Type unβ} {R : Type uR} {n : Type un} [Semiring R] (A : Matrix m n R) (em : mβ β m) (en : nβ β n) : Cardinal.lift.{um, max uR umβ} (A.submatrix βem βen).cRank = Cardinal.lift.{umβ, max uR um} A.cRank - Matrix.rank_submatrix π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {mβ : Type umβ} {n : Type un} {nβ : Type unβ} {R : Type uR} [Fintype n] [Fintype nβ] [CommSemiring R] (A : Matrix m n R) (em : mβ β m) (en : nβ β n) : (A.submatrix βem βen).rank = A.rank - Matrix.exists_rank_normal_form π Mathlib.LinearAlgebra.Matrix.Rank
{m : Type um} {R : Type uR} [Field R] [Fintype m] [DecidableEq m] (M : Matrix m m R) : β V U e, IsUnit V β§ IsUnit U β§ V * M * U = (Matrix.fromBlocks 1 0 0 0).submatrix βe βe - Continuous.matrix_submatrix π Mathlib.Topology.Instances.Matrix
{X : Type u_1} {l : Type u_3} {m : Type u_4} {n : Type u_5} {p : Type u_6} {R : Type u_8} [TopologicalSpace X] [TopologicalSpace R] {A : X β Matrix l n R} (hA : Continuous A) (eβ : m β l) (eβ : p β n) : Continuous fun x => (A x).submatrix eβ eβ - PEquiv.toMatrix_toPEquiv_eq π Mathlib.Data.Matrix.PEquiv
{n : Type u_4} {Ξ± : Type u_5} [DecidableEq n] [Zero Ξ±] [One Ξ±] (Ο : Equiv.Perm n) : (Equiv.toPEquiv Ο).toMatrix = Matrix.submatrix 1 (βΟ) id - PEquiv.toMatrix_toPEquiv_mul π Mathlib.Data.Matrix.PEquiv
{l : Type u_2} {m : Type u_3} {n : Type u_4} {Ξ± : Type u_5} [Fintype m] [DecidableEq m] [NonAssocSemiring Ξ±] (f : l β m) (M : Matrix m n Ξ±) : f.toPEquiv.toMatrix * M = M.submatrix (βf) id - PEquiv.mul_toMatrix_toPEquiv π Mathlib.Data.Matrix.PEquiv
{l : Type u_2} {m : Type u_3} {n : Type u_4} {Ξ± : Type u_5} [Fintype m] [DecidableEq n] [NonAssocSemiring Ξ±] (M : Matrix l m Ξ±) (f : m β n) : M * f.toPEquiv.toMatrix = M.submatrix id βf.symm - Matrix.submatrix_gram π Mathlib.Analysis.InnerProductSpace.GramMatrix
{E : Type u_1} {n : Type u_2} {π : Type u_4} [RCLike π] [SeminormedAddCommGroup E] [InnerProductSpace π E] (v : n β E) {m : Set n} (f : βm β n) : (Matrix.gram π v).submatrix f f = Matrix.gram π (v β f) - Matrix.IsAdjMatrix.submatrix π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} {A : Matrix V V Ξ±} [Zero Ξ±] [One Ξ±] (h : A.IsAdjMatrix) (f : W β V) : (A.submatrix f f).IsAdjMatrix - Matrix.isAdjMatrix_submatrix_iff π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} {A : Matrix V V Ξ±} [Zero Ξ±] [One Ξ±] {f : W β V} (hf : Function.Surjective f) : (A.submatrix f f).IsAdjMatrix β A.IsAdjMatrix - Matrix.IsAdjMatrix.toGraphSubmatrixHom π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} (A : Matrix V V Ξ±) [MulZeroOneClass Ξ±] [Nontrivial Ξ±] (h : A.IsAdjMatrix) (f : W β V) : β―.toGraph βg h.toGraph - SimpleGraph.Embedding.submatrix_adjMatrix π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
(Ξ± : Type u_1) {V : Type u_2} {W : Type u_3} {G : SimpleGraph V} [DecidableRel G.Adj] [Zero Ξ±] [One Ξ±] {H : SimpleGraph W} [DecidableRel H.Adj] (f : G βͺg H) : (SimpleGraph.adjMatrix Ξ± H).submatrix βf βf = SimpleGraph.adjMatrix Ξ± G - Matrix.IsAdjMatrix.toGraphSubmatrixEmbedding π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} (A : Matrix V V Ξ±) [MulZeroOneClass Ξ±] [Nontrivial Ξ±] (h : A.IsAdjMatrix) (f : W βͺ V) : β―.toGraph βͺg h.toGraph - Matrix.IsAdjMatrix.toGraphSubmatrixEmbedding_apply π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} (A : Matrix V V Ξ±) [MulZeroOneClass Ξ±] [Nontrivial Ξ±] (h : A.IsAdjMatrix) (f : W β V) (v : W) : (Matrix.IsAdjMatrix.toGraphSubmatrixHom A h f) v = f v - Matrix.IsAdjMatrix.toGraphSubmatrixHom_apply π Mathlib.Combinatorics.SimpleGraph.AdjMatrix
{Ξ± : Type u_1} {V : Type u_2} {W : Type u_3} (A : Matrix V V Ξ±) [MulZeroOneClass Ξ±] [Nontrivial Ξ±] (h : A.IsAdjMatrix) (f : W β V) (aβ : W) : (Matrix.IsAdjMatrix.toGraphSubmatrixHom A h f) aβ = f aβ - Matrix.submatrix_succAbove_det_eq_negOnePow_submatrix_succAbove_det' π Mathlib.LinearAlgebra.Matrix.Determinant.Misc
{R : Type u_1} [CommRing R] {n : β} (M : Matrix (Fin n) (Fin (n + 1)) R) (hv : β (i : Fin n), β j, M i j = 0) (jβ jβ : Fin (n + 1)) : (M.submatrix id jβ.succAbove).det = (ββjβ - ββjβ).negOnePow β’ (M.submatrix id jβ.succAbove).det - Matrix.submatrix_succAbove_det_eq_negOnePow_submatrix_succAbove_det π Mathlib.LinearAlgebra.Matrix.Determinant.Misc
{R : Type u_1} [CommRing R] {n : β} (M : Matrix (Fin (n + 1)) (Fin n) R) (hv : β j, M j = 0) (jβ jβ : Fin (n + 1)) : (M.submatrix jβ.succAbove id).det = (ββjβ - ββjβ).negOnePow β’ (M.submatrix jβ.succAbove id).det - Matrix.det_eq_sum_column_mul_submatrix_succAbove_succAbove_det π Mathlib.LinearAlgebra.Matrix.Determinant.Misc
{R : Type u_1} [CommRing R] {n : β} (M : Matrix (Fin (n + 1)) (Fin (n + 1)) R) (iβ jβ : Fin (n + 1)) (hv : β (j : Fin (n + 1)), j β jβ β β i, M i j = 0) : M.det = ((-1) ^ (βiβ + βjβ) * β i, M i jβ) * (M.submatrix iβ.succAbove jβ.succAbove).det - Matrix.det_eq_sum_row_mul_submatrix_succAbove_succAbove_det π Mathlib.LinearAlgebra.Matrix.Determinant.Misc
{R : Type u_1} [CommRing R] {n : β} (M : Matrix (Fin (n + 1)) (Fin (n + 1)) R) (iβ jβ : Fin (n + 1)) (hv : β (i : Fin (n + 1)), i β iβ β β j, M i j = 0) : M.det = ((-1) ^ (βiβ + βjβ) * β j, M iβ j) * (M.submatrix iβ.succAbove jβ.succAbove).det - Matrix.IsTotallyNonneg.submatrix π Mathlib.LinearAlgebra.Matrix.Determinant.TotallyNonneg
{ΞΉ : Type u_1} {ΞΊ : Type u_2} {R : Type u_3} [PartialOrder ΞΉ] [PartialOrder ΞΊ] [CommRing R] [PartialOrder R] {M : Matrix ΞΉ ΞΉ R} {f g : ΞΊ β ΞΉ} (hM : M.IsTotallyNonneg) (hf : StrictMono f) (hg : StrictMono g) : (M.submatrix f g).IsTotallyNonneg - Matrix.IsTotallyUnimodular.submatrix π Mathlib.LinearAlgebra.Matrix.Determinant.TotallyUnimodular
{m : Type u_1} {m' : Type u_2} {n : Type u_3} {n' : Type u_4} {R : Type u_5} [CommRing R] {A : Matrix m n R} (f : m' β m) (g : n' β n) (hA : A.IsTotallyUnimodular) : (A.submatrix f g).IsTotallyUnimodular - Matrix.isTotallyUnimodular_iff_fintype π Mathlib.LinearAlgebra.Matrix.Determinant.TotallyUnimodular
{m : Type u_1} {n : Type u_3} {R : Type u_5} [CommRing R] (A : Matrix m n R) : A.IsTotallyUnimodular β β (ΞΉ : Type w) [inst : Fintype ΞΉ] [inst_1 : DecidableEq ΞΉ] (f : ΞΉ β m) (g : ΞΉ β n), (A.submatrix f g).det β Set.range SignType.cast - Matrix.isTotallyUnimodular_iff π Mathlib.LinearAlgebra.Matrix.Determinant.TotallyUnimodular
{m : Type u_1} {n : Type u_3} {R : Type u_5} [CommRing R] (A : Matrix m n R) : A.IsTotallyUnimodular β β (k : β) (f : Fin k β m) (g : Fin k β n), (A.submatrix f g).det β Set.range SignType.cast - Echelon.Decomposition.isPivotedBy π Mathlib.LinearAlgebra.Matrix.Echelon.Decomposition
{m : Type u_1} [Fintype m] [LinearOrder m] {n : Type u_2} [LinearOrder n] {R : Type u_3} [CommRing R] {A : Matrix m n R} (self : Echelon.Decomposition A) : (self.L * A.submatrix (βself.Ο) id).IsPivotedBy self.pivot - Echelon.Decomposition.mk π Mathlib.LinearAlgebra.Matrix.Echelon.Decomposition
{m : Type u_1} [Fintype m] [LinearOrder m] {n : Type u_2} [LinearOrder n] {R : Type u_3} [CommRing R] {A : Matrix m n R} (L : Matrix m m R) (Ο : Equiv.Perm m) (pivot : m β WithTop n) (isPivotedBy : (L * A.submatrix (βΟ) id).IsPivotedBy pivot) (L_lowerTriangular : L.IsLowerTriangular) (L_diag_ne_zero : β (i : m), L.diag i β 0) : Echelon.Decomposition A - Matrix.isHadamard_submatrix_equiv_iff π Mathlib.LinearAlgebra.Matrix.HadamardMatrix
{m : Type u_1} {n : Type u_2} {R : Type u_3} [Fintype m] [Fintype n] [DecidableEq m] [DecidableEq n] [Semiring R] [StarRing R] {A : Matrix n n R} (eβ eβ : m β n) : (A.submatrix βeβ βeβ).IsHadamard β A.IsHadamard - Matrix.IsDiag.submatrix π Mathlib.LinearAlgebra.Matrix.IsDiag
{Ξ± : Type u_1} {n : Type u_4} {m : Type u_5} [Zero Ξ±] {A : Matrix n n Ξ±} (ha : A.IsDiag) {f : m β n} (hf : Function.Injective f) : (A.submatrix f f).IsDiag - Matrix.permanent_permute_cols π Mathlib.LinearAlgebra.Matrix.Permanent
{n : Type u_1} [DecidableEq n] [Fintype n] {R : Type u_2} [CommSemiring R] (Ο : Equiv.Perm n) (M : Matrix n n R) : (M.submatrix (βΟ) id).permanent = M.permanent - Matrix.permanent_permute_rows π Mathlib.LinearAlgebra.Matrix.Permanent
{n : Type u_1} [DecidableEq n] [Fintype n] {R : Type u_2} [CommSemiring R] (Ο : Equiv.Perm n) (M : Matrix n n R) : (M.submatrix id βΟ).permanent = M.permanent - TensorProduct.toMatrix_comm π Mathlib.LinearAlgebra.TensorProduct.Matrix
{R : Type u_1} {M : Type u_2} {N : Type u_3} {ΞΉ : Type u_7} {ΞΊ : Type u_8} [DecidableEq ΞΉ] [DecidableEq ΞΊ] [Fintype ΞΉ] [Fintype ΞΊ] [CommRing R] [AddCommGroup M] [AddCommGroup N] [Module R M] [Module R N] (bM : Module.Basis ΞΉ R M) (bN : Module.Basis ΞΊ R N) : (LinearMap.toMatrix (bM.tensorProduct bN) (bN.tensorProduct bM)) β(TensorProduct.comm R M N) = Matrix.submatrix 1 Prod.swap id - TensorProduct.toMatrix_assoc π Mathlib.LinearAlgebra.TensorProduct.Matrix
{R : Type u_1} {M : Type u_2} {N : Type u_3} {P : Type u_4} {ΞΉ : Type u_7} {ΞΊ : Type u_8} {Ο : Type u_9} [DecidableEq ΞΉ] [DecidableEq ΞΊ] [DecidableEq Ο] [Fintype ΞΉ] [Fintype ΞΊ] [Fintype Ο] [CommRing R] [AddCommGroup M] [AddCommGroup N] [AddCommGroup P] [Module R M] [Module R N] [Module R P] (bM : Module.Basis ΞΉ R M) (bN : Module.Basis ΞΊ R N) (bP : Module.Basis Ο R P) : (LinearMap.toMatrix ((bM.tensorProduct bN).tensorProduct bP) (bM.tensorProduct (bN.tensorProduct bP))) β(TensorProduct.assoc R M N P) = Matrix.submatrix 1 id β(Equiv.prodAssoc ΞΉ ΞΊ Ο) - ProbabilityTheory.measurePreserving_restrictβ_multivariateGaussian π Mathlib.Probability.Distributions.Gaussian.Multivariate
{ΞΉ : Type u_2} [DecidableEq ΞΉ] {I J : Finset ΞΉ} {ΞΌ : EuclideanSpace β β₯I} {S : Matrix β₯I β₯I β} (hS : S.PosSemidef) (hJI : J β I) : MeasureTheory.MeasurePreserving (β(EuclideanSpace.restrictβ hJI)) (ProbabilityTheory.multivariateGaussian ΞΌ S) (ProbabilityTheory.multivariateGaussian ((EuclideanSpace.restrictβ hJI) ΞΌ) (S.submatrix (fun i => β¨βi, β―β©) fun i => β¨βi, β―β©)) - ProbabilityTheory.BrownianReal.covMatrix_submatrix π Mathlib.Probability.BrownianMotion.GaussianProjectiveFamily
{I J : Finset NNReal} (hJI : J β I) : ((ProbabilityTheory.BrownianReal.covMatrix I).submatrix (fun i => β¨βi, β―β©) fun i => β¨βi, β―β©) = ProbabilityTheory.BrownianReal.covMatrix J
About
Loogle searches Lean and Mathlib definitions and theorems.
You can use Loogle from within the Lean4 VSCode language extension
using the Loogle command from the command palette. You can also try the
#loogle command from LeanSearchClient,
the CLI version, the Loogle
VS Code extension, the lean.nvim
integration or the Zulip bot.
Usage
Loogle finds definitions and lemmas in various ways:
By constant:
πReal.sin
finds all lemmas whose statement somehow mentions the sine function.By lemma name substring:
π"differ"
finds all lemmas that have"differ"somewhere in their lemma name.By subexpression:
π_ * (_ ^ _)
finds all lemmas whose statements somewhere include a product where the second argument is raised to some power.The pattern can also be non-linear, as in
πReal.sqrt ?a * Real.sqrt ?aIf the pattern has parameters, they are matched in any order. Both of these will find
List.map:
π(?a -> ?b) -> List ?a -> List ?b
πList ?a -> (?a -> ?b) -> List ?bBy main conclusion:
π|- tsum _ = _ * tsum _
finds all lemmas where the conclusion (the subexpression to the right of allβandβ) has the given shape.As before, if the pattern has parameters, they are matched against the hypotheses of the lemma in any order; for example,
π|- _ < _ β tsum _ < tsum _
will findtsum_lt_tsumeven though the hypothesisf i < g iis not the last.You can filter for definitions vs theorems: Using
β’ (_ : Type _)finds all definitions which provide data whileβ’ (_ : Prop)finds all theorems (and definitions of proofs).
If you pass more than one such search filter, separated by commas
Loogle will return lemmas which match all of them. The
search
π Real.sin, "two", tsum, _ * _, _ ^ _, |- _ < _ β _
would find all lemmas which mention the constants Real.sin
and tsum, have "two" as a substring of the
lemma name, include a product and a power somewhere in the type,
and have a hypothesis of the form _ < _ (if
there were any such lemmas). Metavariables (?a) are
assigned independently in each filter.
The #lucky button will directly send you to the
documentation of the first hit.
Source code
You can find the source code for this service at https://github.com/nomeata/loogle. The https://loogle.lean-lang.org/ service is provided by the Lean FRO. Please review the Lean FRO Terms of Use and Privacy Policy.
This is Loogle revision 9f11169 serving mathlib revision 69fae59