theorem
proved
mainTerms_eq_4
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.StandardModelLagrangianStructure on GitHub at line 35.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
32def mainTermCount : ℕ := 4
33def totalTermCount : ℕ := 5
34
35theorem mainTerms_eq_4 : mainTermCount = 4 := rfl
36theorem mainTerms_2sq : mainTermCount = 2 ^ 2 := by decide
37theorem mainTerms_2pow_Dm1 : mainTermCount = 2 ^ (3 - 1) := by decide
38theorem total_terms : totalTermCount = mainTermCount + 1 := by decide
39
40structure SMLagrangianCert where
41 five_sectors : Fintype.card SMLagrangianSector = 5
42 main4_2sq : mainTermCount = 2 ^ 2
43 total5 : totalTermCount = mainTermCount + 1
44
45def smLagrangianCert : SMLagrangianCert where
46 five_sectors := smSectorCount
47 main4_2sq := mainTerms_2sq
48 total5 := total_terms
49
50end IndisputableMonolith.Physics.StandardModelLagrangianStructure