structure
definition
AlgebraicGeometryCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Mathematics.AlgebraicGeometryFromRS on GitHub at line 34.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
31def cyDimension : ℕ := 3
32theorem cyDimension_eq_D : cyDimension = 3 := rfl
33
34structure AlgebraicGeometryCert where
35 five_objects : Fintype.card AlgebraicGeometryObject = 5
36 cy_dim : cyDimension = 3
37
38def algebraicGeometryCert : AlgebraicGeometryCert where
39 five_objects := agObjectCount
40 cy_dim := cyDimension_eq_D
41
42end IndisputableMonolith.Mathematics.AlgebraicGeometryFromRS