pith. machine review for the scientific record. sign in
structure

MatrixBridge

definition
show as:
view math explainer →
module
IndisputableMonolith.Relativity.Geometry.MatrixBridge
domain
Relativity
line
19 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Relativity.Geometry.MatrixBridge on GitHub at line 19.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  16namespace Geometry
  17
  18/-- **SCAFFOLD**: Minimal placeholder for the matrix bridge infrastructure. -/
  19structure MatrixBridge where
  20  matrix : Matrix (Fin 4) (Fin 4) ℝ := 1
  21
  22/-- The Minkowski metric matrix $\eta_{\mu\nu} = \text{diag}(-1, 1, 1, 1)$. -/
  23noncomputable def minkowskiMatrix : Matrix (Fin 4) (Fin 4) ℝ :=
  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