inductive
definition
GWSourceClass
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Physics.GravitationalWaveSourcesFromConfigDim on GitHub at line 18.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
15
16namespace IndisputableMonolith.Physics.GravitationalWaveSourcesFromConfigDim
17
18inductive GWSourceClass where
19 | compactBinary
20 | coreCollapse
21 | continuous
22 | stochasticBackground
23 | memory
24 deriving DecidableEq, Repr, BEq, Fintype
25
26theorem gwSourceClass_count : Fintype.card GWSourceClass = 5 := by decide
27
28structure GWSourcesCert where
29 five_classes : Fintype.card GWSourceClass = 5
30
31def gwSourcesCert : GWSourcesCert where
32 five_classes := gwSourceClass_count
33
34end IndisputableMonolith.Physics.GravitationalWaveSourcesFromConfigDim