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

priorityBucketTotal

proved
show as:
view math explainer →
module
IndisputableMonolith.Foundation.OptionAEmpiricalQueue
domain
Foundation
line
143 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Foundation.OptionAEmpiricalQueue on GitHub at line 143.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

 140    c ∈ deferredTests ↔ empiricalPriority c = .defer := by
 141  cases c <;> simp [deferredTests, empiricalPriority]
 142
 143theorem priorityBucketTotal :
 144    immediateTests.length + highPriorityTests.length +
 145      mediumPriorityTests.length + deferredTests.length = 9 := by
 146  rw [immediateTests_length, highPriorityTests_length,
 147    mediumPriorityTests_length, deferredTests_length]
 148
 149structure EmpiricalQueueCert where
 150  four_priorities : Fintype.card Priority = 4
 151  c3_now : isImmediate .c3OncologyTensor
 152  c8_now : isImmediate .c8MillerSpan
 153  c5_next : empiricalPriority .c5AttentionTensor = .high
 154  c2_next : empiricalPriority .c2PlanetStrata = .high
 155  c9_next : empiricalPriority .c9RegulatoryCeiling = .high
 156  all_have_protocol : ∀ c : CombinationID, ProtocolFalsifiable c
 157  immediate_classification :
 158    ∀ c : CombinationID, isImmediate c ↔
 159      c = .c3OncologyTensor ∨ c = .c8MillerSpan
 160  high_or_immediate_classification :
 161    ∀ c : CombinationID, isHighOrImmediate c ↔
 162      c = .c2PlanetStrata ∨
 163      c = .c3OncologyTensor ∨
 164      c = .c5AttentionTensor ∨
 165      c = .c8MillerSpan ∨
 166      c = .c9RegulatoryCeiling
 167  immediate_count : immediateTests.length = 2
 168  high_count : highPriorityTests.length = 3
 169  medium_count : mediumPriorityTests.length = 2
 170  defer_count : deferredTests.length = 2
 171  bucket_total : immediateTests.length + highPriorityTests.length +
 172    mediumPriorityTests.length + deferredTests.length = 9
 173  immediate_exact : ∀ c : CombinationID,