structure
definition
NumberSystemCert
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Mathematics.NumberSystemsFromRS on GitHub at line 33.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
30/-- Rational system contains J-cost domain (positive rationals). -/
31theorem rational_contains_jcost_domain : (1 : ℚ) > 0 := by norm_num
32
33structure NumberSystemCert where
34 five_systems : Fintype.card NumberSystem = 5
35 rational_pos : (1 : ℚ) > 0
36
37def numberSystemCert : NumberSystemCert where
38 five_systems := numberSystemCount
39 rational_pos := rational_contains_jcost_domain
40
41end IndisputableMonolith.Mathematics.NumberSystemsFromRS