structure
definition
def or abbrev
RecognitionGeneratorsCert
show as:
view Lean formalization →
formal statement (Lean)
79structure RecognitionGeneratorsCert where
80 generator_2 : G2 = 2
81 generator_3 : G3 = 3
82 generator_5 : G5 = 5
83 primorial_3 : G2 * G3 * G5 = 30
84 generators_distinct : G2 ≠ G3 ∧ G3 ≠ G5 ∧ G2 ≠ G5
85 -- Spectrum decompositions
86 four_as_G : (4 : ℕ) = G2^2
87 six_as_G : (6 : ℕ) = G2 * G3
88 fortyfive_as_G : (45 : ℕ) = G3^2 * G5
89 oneTwentyFive_as_G : (125 : ℕ) = G5^3
90 threeSixty_as_G : (360 : ℕ) = G2^3 * G3^2 * G5
91