Skip to content

Commit

Permalink
two more lemma statements
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Jan 7, 2024
1 parent 91a5a1b commit 6ccd292
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MatrixCookbook/9SpecialMatrices.lean
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Mathlib.Data.Complex.Basic
import Mathlib.Data.Matrix.Reflection
import Mathlib.LinearAlgebra.Matrix.Hermitian
import Mathlib.LinearAlgebra.Matrix.NonsingularInverse
import Mathlib.LinearAlgebra.Matrix.PosDef
import Mathlib.LinearAlgebra.Matrix.SchurComplement
import Mathlib.LinearAlgebra.Matrix.Symmetric
import Mathlib.LinearAlgebra.Vandermonde
Expand Down Expand Up @@ -244,10 +245,10 @@ theorem eq438 : sorry :=
/-! ### Definitions -/


theorem eq439 : sorry :=
theorem eq439 (A : Matrix n n ℝ) : A.PosDef ↔ ∀ x ≠ 0, x ⬝ᵥ A.mulVec x > 0 :=
sorry

theorem eq440 : sorry :=
theorem eq440 (A : Matrix n n ℝ) : A.PosSemidef ↔ ∀ x, x ⬝ᵥ A.mulVec x ≥ 0 :=
sorry

/-! ### Eigenvalues -/
Expand Down

0 comments on commit 6ccd292

Please sign in to comment.