theorem
proved
every_priority_has_protocol
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.OptionAEmpiricalQueue on GitHub at line 68.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
65 ProtocolFalsifiable .c8MillerSpan :=
66 protocolFalsifiable_all .c8MillerSpan
67
68theorem every_priority_has_protocol (c : CombinationID) :
69 ProtocolFalsifiable c :=
70 protocolFalsifiable_all c
71
72/-- The two immediate tests are C3 and C8. -/
73theorem immediate_iff (c : CombinationID) :
74 isImmediate c ↔ c = .c3OncologyTensor ∨ c = .c8MillerSpan := by
75 cases c <;> simp [isImmediate, empiricalPriority]
76
77/-- High-or-immediate items are the five tests that should precede the rest. -/
78theorem high_or_immediate_iff (c : CombinationID) :
79 isHighOrImmediate c ↔
80 c = .c2PlanetStrata ∨
81 c = .c3OncologyTensor ∨
82 c = .c5AttentionTensor ∨
83 c = .c8MillerSpan ∨
84 c = .c9RegulatoryCeiling := by
85 cases c <;> simp [isHighOrImmediate, empiricalPriority]
86
87/-- Immediate empirical tests. -/
88def immediateTests : List CombinationID :=
89 [.c3OncologyTensor, .c8MillerSpan]
90
91/-- High-priority empirical tests after the immediate pair. -/
92def highPriorityTests : List CombinationID :=
93 [.c2PlanetStrata, .c5AttentionTensor, .c9RegulatoryCeiling]
94
95/-- Medium-priority empirical tests. -/
96def mediumPriorityTests : List CombinationID :=
97 [.c1CognitiveTensor, .c7UniversalResponse]
98