def
definition
MatrixBridgeAccepts
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Relativity.Geometry.MatrixBridge on GitHub at line 27.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
24 Matrix.diagonal fun i => if i.val = 0 then -1 else 1
25
26/-- Bridge is accepted if the matrix is invertible (non-zero determinant). -/
27def MatrixBridgeAccepts (B : MatrixBridge) : Prop :=
28 B.matrix.det ≠ 0
29
30@[simp] lemma matrixBridge_accepts_identity : MatrixBridgeAccepts {} := by
31 unfold MatrixBridgeAccepts
32 simp [MatrixBridge]
33
34
35end Geometry
36end Relativity
37end IndisputableMonolith