structure
definition
RoboticsCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Physics.RoboticsFromRS on GitHub at line 31.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
28def sixDOF : ℕ := 6
29theorem sixDOF_eq_cubefaces : sixDOF = 6 := rfl
30
31structure RoboticsCert where
32 five_subsystems : Fintype.card RoboticSubsystem = 5
33 six_dof : sixDOF = 6
34
35def roboticsCert : RoboticsCert where
36 five_subsystems := roboticSubsystemCount
37 six_dof := sixDOF_eq_cubefaces
38
39end IndisputableMonolith.Physics.RoboticsFromRS