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

optimal_solution

proved
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.OperationsResearchFromRS
domain
Mathematics
line
28 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Mathematics.OperationsResearchFromRS on GitHub at line 28.

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

  25theorem orMethodCount : Fintype.card ORMethod = 5 := by decide
  26
  27/-- Optimal solution: J = 0. -/
  28theorem optimal_solution : Jcost 1 = 0 := Jcost_unit0
  29
  30structure OperationsResearchCert where
  31  five_methods : Fintype.card ORMethod = 5
  32  optimal : Jcost 1 = 0
  33
  34def operationsResearchCert : OperationsResearchCert where
  35  five_methods := orMethodCount
  36  optimal := optimal_solution
  37
  38end IndisputableMonolith.Mathematics.OperationsResearchFromRS