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

SpecialRelativityCert

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.SpecialRelativityFromRS
domain
Physics
line
41 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Physics.SpecialRelativityFromRS on GitHub at line 41.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  38theorem sr_symmetry {r : ℝ} (hr : 0 < r) :
  39    Jcost r = Jcost r⁻¹ := Jcost_symm hr
  40
  41structure SpecialRelativityCert where
  42  five_effects : Fintype.card SREffect = 5
  43  rest_zero : Jcost 1 = 0
  44  motion_positive : ∀ {r : ℝ}, 0 < r → r ≠ 1 → 0 < Jcost r
  45  symmetric : ∀ {r : ℝ}, 0 < r → Jcost r = Jcost r⁻¹
  46
  47def specialRelativityCert : SpecialRelativityCert where
  48  five_effects := srEffectCount
  49  rest_zero := rest_frame
  50  motion_positive := motion_cost
  51  symmetric := sr_symmetry
  52
  53end IndisputableMonolith.Physics.SpecialRelativityFromRS