pith. machine review for the scientific record. sign in
theorem

roboticSubsystemCount

proved
show as:
view math explainer →
module
IndisputableMonolith.Physics.RoboticsFromRS
domain
Physics
line
25 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.RoboticsFromRS on GitHub at line 25.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  22  | sensing | actuation | computation | communication | power
  23  deriving DecidableEq, Repr, BEq, Fintype
  24
  25theorem roboticSubsystemCount : Fintype.card RoboticSubsystem = 5 := by decide
  26
  27/-- 6-DOF = cube faces = 6. -/
  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