inductive
definition
CarbonRemovalPathway
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Climate.CarbonRemovalPathwaysFromConfigDim on GitHub at line 18.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
15
16namespace IndisputableMonolith.Climate.CarbonRemovalPathwaysFromConfigDim
17
18inductive CarbonRemovalPathway where
19 | afforestation
20 | soilCarbon
21 | biochar
22 | directAirCapture
23 | enhancedWeathering
24 deriving DecidableEq, Repr, BEq, Fintype
25
26theorem carbonRemovalPathway_count : Fintype.card CarbonRemovalPathway = 5 := by decide
27
28structure CarbonRemovalCert where
29 five_pathways : Fintype.card CarbonRemovalPathway = 5
30
31def carbonRemovalCert : CarbonRemovalCert where
32 five_pathways := carbonRemovalPathway_count
33
34end IndisputableMonolith.Climate.CarbonRemovalPathwaysFromConfigDim