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

decomposition_unique_holds

proved
show as:
view math explainer →
module
IndisputableMonolith.Relativity.GW.TensorDecomposition
domain
Relativity
line
33 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Relativity.GW.TensorDecomposition on GitHub at line 33.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

  30def decomposition_unique : Prop :=
  31  ∀ tp1 tp2 : TensorPerturbation, tp1.h_TT = tp2.h_TT → tp1 = tp2
  32
  33theorem decomposition_unique_holds : decomposition_unique := by
  34  intro tp1 tp2 h
  35  cases tp1; cases tp2; simp at h; subst h
  36  rfl
  37
  38
  39end GW
  40end Relativity
  41end IndisputableMonolith