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

GeophysicalObservable

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Physics.GeophysicsFromRS on GitHub at line 28.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

used by

formal source

  25
  26theorem earthLayerCount : Fintype.card EarthLayer = 5 := by decide
  27
  28inductive GeophysicalObservable where
  29  | seismicity | gravimetry | geomagnetism | heatFlow | gpsGeodesy
  30  deriving DecidableEq, Repr, BEq, Fintype
  31
  32theorem geophysicalObservableCount : Fintype.card GeophysicalObservable = 5 := by decide
  33
  34structure GeophysicsCert where
  35  five_layers : Fintype.card EarthLayer = 5
  36  five_observables : Fintype.card GeophysicalObservable = 5
  37
  38def geophysicsCert : GeophysicsCert where
  39  five_layers := earthLayerCount
  40  five_observables := geophysicalObservableCount
  41
  42end IndisputableMonolith.Physics.GeophysicsFromRS